Add kDisablePermissionsAPI content flag and disable it for WebView.
[chromium-blink-merge.git] / android_webview / lib / main / aw_main_delegate.cc
blob7296b87ce714520338fff1096a44602fb5cb2cb8
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "android_webview/lib/main/aw_main_delegate.h"
7 #include "android_webview/browser/aw_content_browser_client.h"
8 #include "android_webview/browser/browser_view_renderer.h"
9 #include "android_webview/browser/scoped_allow_wait_for_legacy_web_view_api.h"
10 #include "android_webview/crash_reporter/aw_microdump_crash_reporter.h"
11 #include "android_webview/lib/aw_browser_dependency_factory_impl.h"
12 #include "android_webview/native/aw_media_url_interceptor.h"
13 #include "android_webview/native/aw_message_port_service_impl.h"
14 #include "android_webview/native/aw_quota_manager_bridge_impl.h"
15 #include "android_webview/native/aw_web_contents_view_delegate.h"
16 #include "android_webview/native/aw_web_preferences_populater_impl.h"
17 #include "android_webview/native/public/aw_assets.h"
18 #include "android_webview/renderer/aw_content_renderer_client.h"
19 #include "base/command_line.h"
20 #include "base/cpu.h"
21 #include "base/i18n/icu_util.h"
22 #include "base/lazy_instance.h"
23 #include "base/logging.h"
24 #include "base/memory/scoped_ptr.h"
25 #include "base/threading/thread_restrictions.h"
26 #include "cc/base/switches.h"
27 #include "components/external_video_surface/browser/android/external_video_surface_container_impl.h"
28 #include "content/public/browser/android/browser_media_player_manager.h"
29 #include "content/public/browser/browser_main_runner.h"
30 #include "content/public/browser/browser_thread.h"
31 #include "content/public/common/content_descriptors.h"
32 #include "content/public/common/content_switches.h"
33 #include "gin/public/isolate_holder.h"
34 #include "gpu/command_buffer/client/gl_in_process_context.h"
35 #include "gpu/command_buffer/service/gpu_switches.h"
36 #include "media/base/media_switches.h"
38 namespace android_webview {
40 namespace {
42 // TODO(boliu): Remove this global Allow once the underlying issues are
43 // resolved - http://crbug.com/240453. See AwMainDelegate::RunProcess below.
44 base::LazyInstance<scoped_ptr<ScopedAllowWaitForLegacyWebViewApi> >
45 g_allow_wait_in_ui_thread = LAZY_INSTANCE_INITIALIZER;
49 AwMainDelegate::AwMainDelegate() {
52 AwMainDelegate::~AwMainDelegate() {
55 bool AwMainDelegate::BasicStartupComplete(int* exit_code) {
56 content::SetContentClient(&content_client_);
58 content::RegisterMediaUrlInterceptor(new AwMediaUrlInterceptor());
60 BrowserViewRenderer::CalculateTileMemoryPolicy();
62 base::CommandLine* cl = base::CommandLine::ForCurrentProcess();
63 cl->AppendSwitch(cc::switches::kEnableBeginFrameScheduling);
65 // WebView uses the Android system's scrollbars and overscroll glow.
66 cl->AppendSwitch(switches::kDisableOverscrollEdgeEffect);
68 // Pull-to-refresh should never be a default WebView action.
69 cl->AppendSwitch(switches::kDisablePullToRefreshEffect);
71 // Not yet supported in single-process mode.
72 cl->AppendSwitch(switches::kDisableSharedWorkers);
74 // File system API not supported (requires some new API; internal bug 6930981)
75 cl->AppendSwitch(switches::kDisableFileSystem);
77 // Web Notification API and the Push API are not supported (crbug.com/434712)
78 cl->AppendSwitch(switches::kDisableNotifications);
80 // WebRTC hardware decoding is not supported, internal bug 15075307
81 cl->AppendSwitch(switches::kDisableWebRtcHWDecoding);
82 cl->AppendSwitch(switches::kDisableAcceleratedVideoDecode);
84 // This is needed for sharing textures across the different GL threads.
85 cl->AppendSwitch(switches::kEnableThreadedTextureMailboxes);
87 // WebView does not yet support screen orientation locking.
88 cl->AppendSwitch(switches::kDisableScreenOrientationLock);
90 // WebView does not currently support Web Speech API (crbug.com/487255)
91 cl->AppendSwitch(switches::kDisableSpeechAPI);
93 // WebView does not currently support the Permissions API (crbug.com/490120)
94 cl->AppendSwitch(switches::kDisablePermissionsAPI);
96 // WebView does not (yet) save Chromium data during shutdown, so add setting
97 // for Chrome to aggressively persist DOM Storage to minimize data loss.
98 // http://crbug.com/479767
99 cl->AppendSwitch(switches::kEnableAggressiveDOMStorageFlushing);
101 // This is needed to be able to mmap the V8 snapshot and ICU data file
102 // directly from the WebView .apk.
103 // This needs to be here so that it gets to run before the code in
104 // content_main_runner that reads these values tries to do so.
105 // In multi-process mode this code would live in
106 // AwContentBrowserClient::GetAdditionalMappedFilesForChildProcess.
107 #ifdef V8_USE_EXTERNAL_STARTUP_DATA
108 #ifdef __LP64__
109 const char kNativesFileName[] = "natives_blob_64.bin";
110 const char kSnapshotFileName[] = "snapshot_blob_64.bin";
111 #else
112 const char kNativesFileName[] = "natives_blob_32.bin";
113 const char kSnapshotFileName[] = "snapshot_blob_32.bin";
114 #endif // __LP64__
115 // TODO(gsennton) we should use
116 // gin::IsolateHolder::kNativesFileName/kSnapshotFileName
117 // here when those files have arch specific names http://crbug.com/455699
118 CHECK(AwAssets::RegisterAssetWithGlobalDescriptors(
119 kV8NativesDataDescriptor, kNativesFileName));
120 CHECK(AwAssets::RegisterAssetWithGlobalDescriptors(
121 kV8SnapshotDataDescriptor, kSnapshotFileName));
122 #endif
123 CHECK(AwAssets::RegisterAssetWithGlobalDescriptors(
124 kAndroidICUDataDescriptor, base::i18n::kIcuDataFileName));
126 return false;
129 void AwMainDelegate::PreSandboxStartup() {
130 // TODO(torne): When we have a separate renderer process, we need to handle
131 // being passed open FDs for the resource paks here.
132 #if defined(ARCH_CPU_ARM_FAMILY)
133 // Create an instance of the CPU class to parse /proc/cpuinfo and cache
134 // cpu_brand info.
135 base::CPU cpu_info;
136 #endif
138 crash_reporter::EnableMicrodumpCrashReporter();
141 void AwMainDelegate::SandboxInitialized(const std::string& process_type) {
142 // TODO(torne): Adjust linux OOM score here.
145 int AwMainDelegate::RunProcess(
146 const std::string& process_type,
147 const content::MainFunctionParams& main_function_params) {
148 if (process_type.empty()) {
149 AwBrowserDependencyFactoryImpl::InstallInstance();
151 browser_runner_.reset(content::BrowserMainRunner::Create());
152 int exit_code = browser_runner_->Initialize(main_function_params);
153 DCHECK_LT(exit_code, 0);
155 g_allow_wait_in_ui_thread.Get().reset(
156 new ScopedAllowWaitForLegacyWebViewApi);
158 // Return 0 so that we do NOT trigger the default behavior. On Android, the
159 // UI message loop is managed by the Java application.
160 return 0;
163 return -1;
166 void AwMainDelegate::ProcessExiting(const std::string& process_type) {
167 // TODO(torne): Clean up resources when we handle them.
169 logging::CloseLogFile();
172 content::ContentBrowserClient*
173 AwMainDelegate::CreateContentBrowserClient() {
174 content_browser_client_.reset(new AwContentBrowserClient(this));
175 return content_browser_client_.get();
178 content::ContentRendererClient*
179 AwMainDelegate::CreateContentRendererClient() {
180 content_renderer_client_.reset(new AwContentRendererClient());
181 return content_renderer_client_.get();
184 scoped_refptr<AwQuotaManagerBridge> AwMainDelegate::CreateAwQuotaManagerBridge(
185 AwBrowserContext* browser_context) {
186 return AwQuotaManagerBridgeImpl::Create(browser_context);
189 content::WebContentsViewDelegate* AwMainDelegate::CreateViewDelegate(
190 content::WebContents* web_contents) {
191 return AwWebContentsViewDelegate::Create(web_contents);
194 AwWebPreferencesPopulater* AwMainDelegate::CreateWebPreferencesPopulater() {
195 return new AwWebPreferencesPopulaterImpl();
198 AwMessagePortService* AwMainDelegate::CreateAwMessagePortService() {
199 return new AwMessagePortServiceImpl();
202 #if defined(VIDEO_HOLE)
203 content::ExternalVideoSurfaceContainer*
204 AwMainDelegate::CreateExternalVideoSurfaceContainer(
205 content::WebContents* web_contents) {
206 return external_video_surface::ExternalVideoSurfaceContainerImpl::Create(
207 web_contents);
209 #endif
211 } // namespace android_webview