diff options
author | jdduke@chromium.org <jdduke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-29 22:37:18 +0000 |
---|---|---|
committer | jdduke@chromium.org <jdduke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-29 22:37:18 +0000 |
commit | 2263cef845fe0e8e7411f9164254f298868f766d (patch) | |
tree | 0b9690b88378574a55eb4236271667f7695bcce9 /android_webview/lib | |
parent | 62e65f0cc982cf66eb00a1a2fc40fb6d82510e31 (diff) | |
download | chromium_src-2263cef845fe0e8e7411f9164254f298868f766d.zip chromium_src-2263cef845fe0e8e7411f9164254f298868f766d.tar.gz chromium_src-2263cef845fe0e8e7411f9164254f298868f766d.tar.bz2 |
Create content switches for frame scheduling and input manager
The new scheduling approach consists of both changes to how frames are scheduled
and when input events are processed. This patch renames a switch for the former
and adds a switch for the latter, to be used for ongoing development.
BUG=240945
Review URL: https://chromiumcodereview.appspot.com/16043002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@202993 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'android_webview/lib')
-rw-r--r-- | android_webview/lib/main/aw_main_delegate.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android_webview/lib/main/aw_main_delegate.cc b/android_webview/lib/main/aw_main_delegate.cc index e659ce3..0717118 100644 --- a/android_webview/lib/main/aw_main_delegate.cc +++ b/android_webview/lib/main/aw_main_delegate.cc @@ -61,7 +61,7 @@ bool AwMainDelegate::BasicStartupComplete(int* exit_code) { cl->AppendSwitch(switches::kEnableWebViewSynchronousAPIs); } else { cl->AppendSwitch(switches::kEnableSynchronousRendererCompositor); - cl->AppendSwitch(switches::kEnableVsyncNotification); + cl->AppendSwitch(switches::kEnableBeginFrameScheduling); } // WebView uses the existing Android View edge effect for overscroll glow. |