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

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

Issue 12614013: Plumb cc::LatencyInfo through command buffer and output surface (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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: 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 4808cc1ea265a9e02458d456a60872d4a60b52fe..dd3d73c9a2ebed98daba7c28f5a8596da99045f8 100644
--- a/content/browser/renderer_host/compositor_impl_android.cc
+++ b/content/browser/renderer_host/compositor_impl_android.cc
@@ -49,8 +49,8 @@ class DirectOutputSurface : public cc::OutputSurface {
: cc::OutputSurface(context3d.Pass()) {}
virtual void Reshape(gfx::Size size) OVERRIDE {}
- virtual void PostSubBuffer(gfx::Rect rect) OVERRIDE {}
- virtual void SwapBuffers() OVERRIDE {}
+ virtual void PostSubBuffer(gfx::Rect rect, const cc::LatencyInfo&) OVERRIDE {}
+ virtual void SwapBuffers(const cc::LatencyInfo&) OVERRIDE {}
};
static bool g_initialized = false;

Powered by Google App Engine
This is Rietveld 408576698