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

Unified Diff: android_webview/lib/main/aw_main_delegate.cc

Issue 23619024: [Android WebView] Enable spatial navigation / DPAD (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 7 years, 3 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
« no previous file with comments | « android_webview/java/src/org/chromium/android_webview/AwWebContentsDelegateAdapter.java ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/lib/main/aw_main_delegate.cc
diff --git a/android_webview/lib/main/aw_main_delegate.cc b/android_webview/lib/main/aw_main_delegate.cc
index 05911dbf36954f23d81d6f3181fd7c5de6ee6fb9..255d4dd6daf8392a6794527c0b9fa8fd88aa0517 100644
--- a/android_webview/lib/main/aw_main_delegate.cc
+++ b/android_webview/lib/main/aw_main_delegate.cc
@@ -64,6 +64,12 @@ bool AwMainDelegate::BasicStartupComplete(int* exit_code) {
// Ganesh backed 2D-Canvas is not yet working and causes crashes.
cl->AppendSwitch(switches::kDisableAccelerated2dCanvas);
+ // File system API not supported (requires some new API; internal bug 6930981)
+ cl->AppendSwitch(switches::kDisableFileSystem);
boliu 2013/09/07 17:37:19 Don't think that was a flake, need to CONTENT_EXPO
+
+ // Enable D-PAD navigation for application compatibility.
+ cl->AppendSwitch(switches::kEnableSpatialNavigation);
+
return false;
}
« no previous file with comments | « android_webview/java/src/org/chromium/android_webview/AwWebContentsDelegateAdapter.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698