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

Unified Diff: content/browser/compositor/browser_compositor_output_surface_proxy.cc

Issue 138903025: Read compositor VSync information from platform, when possible (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 287efe04 Rebase, oshima@ nits. Created 6 years, 10 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/compositor/browser_compositor_output_surface_proxy.cc
diff --git a/content/browser/compositor/browser_compositor_output_surface_proxy.cc b/content/browser/compositor/browser_compositor_output_surface_proxy.cc
index d95c9b0b78a09dda3fc2c212a46b08728f3a8a11..27fe55a7ea9b32bc2efea51e86d8574d548603d5 100644
--- a/content/browser/compositor/browser_compositor_output_surface_proxy.cc
+++ b/content/browser/compositor/browser_compositor_output_surface_proxy.cc
@@ -53,6 +53,6 @@ BrowserCompositorOutputSurfaceProxy::OnUpdateVSyncParametersOnCompositorThread(
base::TimeDelta interval) {
BrowserCompositorOutputSurface* surface = surface_map_->Lookup(surface_id);
if (surface)
- surface->OnUpdateVSyncParameters(timebase, interval);
+ surface->OnUpdateVSyncParametersFromGpu(timebase, interval);
}
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698