diff options
Diffstat (limited to 'content/common/cc_messages.cc')
-rw-r--r-- | content/common/cc_messages.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/content/common/cc_messages.cc b/content/common/cc_messages.cc index bcdf0f0..d65e5f0 100644 --- a/content/common/cc_messages.cc +++ b/content/common/cc_messages.cc @@ -415,6 +415,7 @@ bool ParamTraits<cc::RenderPass>::Read( bool has_transparent_background; bool has_occlusion_from_outside_target_surface; WebKit::WebFilterOperations filters; + skia::RefPtr<SkImageFilter> filter; WebKit::WebFilterOperations background_filters; size_t shared_quad_state_list_size; size_t quad_list_size; @@ -438,7 +439,7 @@ bool ParamTraits<cc::RenderPass>::Read( has_transparent_background, has_occlusion_from_outside_target_surface, filters, - NULL, // TODO(danakj): filter isn't being serialized. + filter, // TODO(danakj): filter isn't being serialized. background_filters); for (size_t i = 0; i < shared_quad_state_list_size; ++i) { |