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

Unified Diff: content/browser/renderer_host/compositor_impl_android.cc

Issue 16863005: cc: Add BeginFrameArgs (Closed) Base URL: http://git.chromium.org/chromium/src.git@nofrc12
Patch Set: Created 7 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: content/browser/renderer_host/compositor_impl_android.cc
diff --git a/content/browser/renderer_host/compositor_impl_android.cc b/content/browser/renderer_host/compositor_impl_android.cc
index c80d73b9bcf663e541fda93c4ed3ae39773eaee9..261ce240b1f42cdeeb03a2e8df28fbfa2284e31e 100644
--- a/content/browser/renderer_host/compositor_impl_android.cc
+++ b/content/browser/renderer_host/compositor_impl_android.cc
@@ -46,7 +46,9 @@ namespace {
class DirectOutputSurface : public cc::OutputSurface {
public:
DirectOutputSurface(scoped_ptr<WebKit::WebGraphicsContext3D> context3d)
- : cc::OutputSurface(context3d.Pass()) {}
+ : cc::OutputSurface(context3d.Pass()) {
+ capabilities_.has_parent_compositor = false;
no sievers 2013/06/13 01:17:47 This is for the soon-to-be-deprecated WebView w/br
+ }
virtual void Reshape(gfx::Size size, float scale_factor) OVERRIDE {
surface_size_ = size;

Powered by Google App Engine
This is Rietveld 408576698