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

Unified Diff: android_webview/browser/child_frame.cc

Issue 2036023002: Rewire Android WebView's compositor changed signal. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix browse_view_renderer construction and rebase Created 4 years, 6 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.cc
diff --git a/android_webview/browser/child_frame.cc b/android_webview/browser/child_frame.cc
index 752371a8bd5111c7da7773bec8b93d0d99a7d919..13b48f88d1e6e7ad7c97256f8773af79344c3c05 100644
--- a/android_webview/browser/child_frame.cc
+++ b/android_webview/browser/child_frame.cc
@@ -2,17 +2,16 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "android_webview/browser/child_frame.h"
-
-#include <utility>
+#include <memory>
boliu 2016/06/13 15:30:44 not needed if header includes it already
hush (inactive) 2016/06/14 23:48:28 removed
+#include "android_webview/browser/child_frame.h"
boliu 2016/06/13 15:30:44 style guide says the .h file of this .cc file is t
boliu 2016/06/15 00:04:02 not done yet :p
hush (inactive) 2016/06/15 18:10:24 added a blank line
#include "cc/output/compositor_frame.h"
namespace android_webview {
ChildFrame::ChildFrame(uint32_t output_surface_id,
std::unique_ptr<cc::CompositorFrame> frame,
- uint32_t compositor_id,
+ CompositorID compositor_id,
bool viewport_rect_for_tile_priority_empty,
const gfx::Transform& transform_for_tile_priority,
bool offscreen_pre_raster,

Powered by Google App Engine
This is Rietveld 408576698