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 852081619f39e60952835d7157d8a053060609e0..bd6bcc5b2a0da4d447393079b93a929b8930b3de 100644 |
--- a/android_webview/lib/main/aw_main_delegate.cc |
+++ b/android_webview/lib/main/aw_main_delegate.cc |
@@ -90,6 +90,9 @@ bool AwMainDelegate::BasicStartupComplete(int* exit_code) { |
// WebView does not yet support screen orientation locking. |
cl->AppendSwitch(switches::kDisableScreenOrientationLock); |
+ // WebView does not currently support Web Speech API (crbug.com/483889) |
+ cl->AppendSwitch(switches::kDisableSpeech); |
+ |
// This is needed to be able to mmap the V8 snapshot and ICU data file |
// directly from the WebView .apk. |
// This needs to be here so that it gets to run before the code in |