| Index: android_webview/browser/child_frame.h
|
| diff --git a/android_webview/browser/child_frame.h b/android_webview/browser/child_frame.h
|
| index 8e680bcaa4b33492052a4c5c0214a96639022724..ba56720166615a3f87df39cc1b68772de726d1b1 100644
|
| --- a/android_webview/browser/child_frame.h
|
| +++ b/android_webview/browser/child_frame.h
|
| @@ -19,7 +19,8 @@ namespace android_webview {
|
|
|
| class ChildFrame {
|
| public:
|
| - ChildFrame(scoped_ptr<cc::CompositorFrame> frame,
|
| + ChildFrame(uint32_t output_surface_id,
|
| + scoped_ptr<cc::CompositorFrame> frame,
|
| unsigned int compositor_id,
|
| bool viewport_rect_for_tile_priority_empty,
|
| const gfx::Transform& transform_for_tile_priority,
|
| @@ -27,6 +28,7 @@ class ChildFrame {
|
| bool is_layer);
|
| ~ChildFrame();
|
|
|
| + const uint32_t output_surface_id;
|
| scoped_ptr<cc::CompositorFrame> frame;
|
| // The id of the compositor this |frame| comes from.
|
| const unsigned int compositor_id;
|
|
|