Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2902)

Unified Diff: android_webview/browser/child_frame.h

Issue 1769913003: sync compositor: Add output_surface_id (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix unittests compile Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698