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

Unified Diff: content/browser/android/content_view_core_impl.cc

Issue 15058004: cc: Rename VSync to BeginFrame (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix Android Created 7 years, 7 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/android/content_view_core_impl.cc
diff --git a/content/browser/android/content_view_core_impl.cc b/content/browser/android/content_view_core_impl.cc
index 8bc6e47463906dcfc287eb06b0ea0342c0aaf3d0..4ed553453b11c23862ce8ef905603559a692bbad 100644
--- a/content/browser/android/content_view_core_impl.cc
+++ b/content/browser/android/content_view_core_impl.cc
@@ -1236,7 +1236,8 @@ void ContentViewCoreImpl::OnVSync(JNIEnv* env, jobject /* obj */,
if (!view)
return;
- view->SendVSync(base::TimeTicks::FromInternalValue(frame_time_micros));
+ view->SendBeginChildFrame(
+ base::TimeTicks::FromInternalValue(frame_time_micros));
}
jboolean ContentViewCoreImpl::PopulateBitmapFromCompositor(JNIEnv* env,

Powered by Google App Engine
This is Rietveld 408576698