| Index: content/browser/compositor/delegated_frame_host.h
|
| diff --git a/content/browser/compositor/delegated_frame_host.h b/content/browser/compositor/delegated_frame_host.h
|
| index e0ac4c0e99ce1de8c6a2a89d5d271aa90d833433..081187a1aea687903ae3884ca2a8622d8fdf6a91 100644
|
| --- a/content/browser/compositor/delegated_frame_host.h
|
| +++ b/content/browser/compositor/delegated_frame_host.h
|
| @@ -203,6 +203,10 @@ class CONTENT_EXPORT DelegatedFrameHost
|
| // Checks if the resize lock can be released because we received an new frame.
|
| void CheckResizeLock();
|
|
|
| + // Update the layers for the resize gutters to the right and bottom of the
|
| + // surface layer.
|
| + void UpdateGutters();
|
| +
|
| // Called after async thumbnailer task completes. Scales and crops the result
|
| // of the copy.
|
| static void CopyFromCompositingSurfaceHasResultForVideo(
|
| @@ -258,6 +262,12 @@ class CONTENT_EXPORT DelegatedFrameHost
|
| bool skipped_frames_;
|
| std::vector<ui::LatencyInfo> skipped_latency_info_list_;
|
|
|
| + scoped_ptr<ui::Layer> right_gutter_;
|
| + scoped_ptr<ui::Layer> bottom_gutter_;
|
| +
|
| + // This is the last root background color from a swapped frame.
|
| + SkColor background_color_;
|
| +
|
| // State for rendering into a Surface.
|
| scoped_ptr<cc::SurfaceIdAllocator> id_allocator_;
|
| scoped_ptr<cc::SurfaceFactory> surface_factory_;
|
|
|