Index: android_webview/browser/child_frame.h |
diff --git a/android_webview/browser/child_frame.h b/android_webview/browser/child_frame.h |
index 68c4bd5bb278a4b51e8f215671128afab63f88d9..c6964ca837eea310798bd69acbc8c7160a32eabb 100644 |
--- a/android_webview/browser/child_frame.h |
+++ b/android_webview/browser/child_frame.h |
@@ -7,6 +7,7 @@ |
#include <memory> |
+#include "android_webview/browser/compositor_id.h" |
#include "base/macros.h" |
#include "ui/gfx/geometry/rect.h" |
#include "ui/gfx/geometry/size.h" |
@@ -22,7 +23,7 @@ class ChildFrame { |
public: |
ChildFrame(uint32_t output_surface_id, |
std::unique_ptr<cc::CompositorFrame> frame, |
- uint32_t compositor_id, |
+ CompositorID compositor_id, |
boliu
2016/06/13 15:30:44
const &
hush (inactive)
2016/06/14 23:48:28
Done.
|
bool viewport_rect_for_tile_priority_empty, |
const gfx::Transform& transform_for_tile_priority, |
bool offscreen_pre_raster, |
@@ -32,7 +33,7 @@ class ChildFrame { |
const uint32_t output_surface_id; |
std::unique_ptr<cc::CompositorFrame> frame; |
// The id of the compositor this |frame| comes from. |
- const uint32_t compositor_id; |
+ const CompositorID compositor_id; |
const bool viewport_rect_for_tile_priority_empty; |
const gfx::Transform transform_for_tile_priority; |
const bool offscreen_pre_raster; |