summaryrefslogtreecommitdiffstats
path: root/android_webview/browser/child_frame.h
diff options
context:
space:
mode:
Diffstat (limited to 'android_webview/browser/child_frame.h')
-rw-r--r--android_webview/browser/child_frame.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/android_webview/browser/child_frame.h b/android_webview/browser/child_frame.h
index b83e57e..ca42958 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,
uint32_t 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 uint32_t compositor_id;