summaryrefslogtreecommitdiffstats
path: root/android_webview/lib
diff options
context:
space:
mode:
authorhenrika@chromium.org <henrika@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-09-09 07:16:25 +0000
committerhenrika@chromium.org <henrika@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-09-09 07:16:25 +0000
commita0bfbf13bc09167561f4b529e87c83046f699df4 (patch)
treee9af82038eaf64f9b36664bdae927a41af4e028a /android_webview/lib
parenta820667b51da834b4a666e995f0623a347e7d663 (diff)
downloadchromium_src-a0bfbf13bc09167561f4b529e87c83046f699df4.zip
chromium_src-a0bfbf13bc09167561f4b529e87c83046f699df4.tar.gz
chromium_src-a0bfbf13bc09167561f4b529e87c83046f699df4.tar.bz2
Revert 221946 "[Android WebView] Enable spatial navigation / DPAD"
> [Android WebView] Enable spatial navigation / DPAD > > Turn on the --enable-spatial-navigation flag, and also bubble up > unhandled DPAD events to the neighboring views in the view tree. > Likewise, WebContentsDelegate::TakeFocus() bubble to logical next > or previous neighbor view. > > Also disabled the FileSystem API while in the area updating flags. > > BUG=286698 > > Review URL: https://chromiumcodereview.appspot.com/23619024 TBR=joth@chromium.org Review URL: https://codereview.chromium.org/23494033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@221989 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'android_webview/lib')
-rw-r--r--android_webview/lib/main/aw_main_delegate.cc8
1 files changed, 0 insertions, 8 deletions
diff --git a/android_webview/lib/main/aw_main_delegate.cc b/android_webview/lib/main/aw_main_delegate.cc
index ff7dfbf..05911db 100644
--- a/android_webview/lib/main/aw_main_delegate.cc
+++ b/android_webview/lib/main/aw_main_delegate.cc
@@ -64,14 +64,6 @@ 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)
- // TODO(joth): export and use switches::kDisableFileSystem
- cl->AppendSwitch("disable-file-system");
-
- // Enable D-PAD navigation for application compatibility.
- // TODO(joth): export and use switches::EnableSpatialNavigation.
- cl->AppendSwitch("enable-spatial-navigation");
-
return false;
}