| Index: android_webview/browser/child_frame.cc
|
| diff --git a/android_webview/browser/child_frame.cc b/android_webview/browser/child_frame.cc
|
| index ef57638ca6fe94225cfd2842194f73356a877038..5213428026b8d83cf06dd78a9e6821da956eeb23 100644
|
| --- a/android_webview/browser/child_frame.cc
|
| +++ b/android_webview/browser/child_frame.cc
|
| @@ -10,13 +10,15 @@
|
|
|
| namespace android_webview {
|
|
|
| -ChildFrame::ChildFrame(scoped_ptr<cc::CompositorFrame> frame,
|
| +ChildFrame::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,
|
| bool offscreen_pre_raster,
|
| bool is_layer)
|
| - : frame(std::move(frame)),
|
| + : output_surface_id(output_surface_id),
|
| + frame(std::move(frame)),
|
| compositor_id(compositor_id),
|
| viewport_rect_for_tile_priority_empty(
|
| viewport_rect_for_tile_priority_empty),
|
|
|