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/renderer/aw_content_renderer_client.h"
18 #include "base/android/apk_assets.h"
19 #include "base/command_line.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_register.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
{
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.
108 const char kNativesFileName
[] = "assets/natives_blob_64.bin";
109 const char kSnapshotFileName
[] = "assets/snapshot_blob_64.bin";
111 const char kNativesFileName
[] = "assets/natives_blob_32.bin";
112 const char kSnapshotFileName
[] = "assets/snapshot_blob_32.bin";
114 // TODO(gsennton) we should use
115 // gin::IsolateHolder::kNativesFileName/kSnapshotFileName
116 // here when those files have arch specific names http://crbug.com/455699
117 CHECK(base::android::RegisterApkAssetWithGlobalDescriptors(
118 kV8NativesDataDescriptor
, kNativesFileName
));
119 CHECK(base::android::RegisterApkAssetWithGlobalDescriptors(
120 kV8SnapshotDataDescriptor
, kSnapshotFileName
));
121 CHECK(base::android::RegisterApkAssetWithGlobalDescriptors(
122 kAndroidICUDataDescriptor
, "assets/icudtl.dat"));
127 void AwMainDelegate::PreSandboxStartup() {
128 // TODO(torne): When we have a separate renderer process, we need to handle
129 // being passed open FDs for the resource paks here.
130 #if defined(ARCH_CPU_ARM_FAMILY)
131 // Create an instance of the CPU class to parse /proc/cpuinfo and cache
136 crash_reporter::EnableMicrodumpCrashReporter();
139 void AwMainDelegate::SandboxInitialized(const std::string
& process_type
) {
140 // TODO(torne): Adjust linux OOM score here.
143 int AwMainDelegate::RunProcess(
144 const std::string
& process_type
,
145 const content::MainFunctionParams
& main_function_params
) {
146 if (process_type
.empty()) {
147 AwBrowserDependencyFactoryImpl::InstallInstance();
149 browser_runner_
.reset(content::BrowserMainRunner::Create());
150 int exit_code
= browser_runner_
->Initialize(main_function_params
);
151 DCHECK_LT(exit_code
, 0);
153 g_allow_wait_in_ui_thread
.Get().reset(
154 new ScopedAllowWaitForLegacyWebViewApi
);
156 // Return 0 so that we do NOT trigger the default behavior. On Android, the
157 // UI message loop is managed by the Java application.
164 void AwMainDelegate::ProcessExiting(const std::string
& process_type
) {
165 // TODO(torne): Clean up resources when we handle them.
167 logging::CloseLogFile();
170 content::ContentBrowserClient
*
171 AwMainDelegate::CreateContentBrowserClient() {
172 content_browser_client_
.reset(new AwContentBrowserClient(this));
173 return content_browser_client_
.get();
176 content::ContentRendererClient
*
177 AwMainDelegate::CreateContentRendererClient() {
178 content_renderer_client_
.reset(new AwContentRendererClient());
179 return content_renderer_client_
.get();
182 scoped_refptr
<AwQuotaManagerBridge
> AwMainDelegate::CreateAwQuotaManagerBridge(
183 AwBrowserContext
* browser_context
) {
184 return AwQuotaManagerBridgeImpl::Create(browser_context
);
187 content::WebContentsViewDelegate
* AwMainDelegate::CreateViewDelegate(
188 content::WebContents
* web_contents
) {
189 return AwWebContentsViewDelegate::Create(web_contents
);
192 AwWebPreferencesPopulater
* AwMainDelegate::CreateWebPreferencesPopulater() {
193 return new AwWebPreferencesPopulaterImpl();
196 AwMessagePortService
* AwMainDelegate::CreateAwMessagePortService() {
197 return new AwMessagePortServiceImpl();
200 #if defined(VIDEO_HOLE)
201 content::ExternalVideoSurfaceContainer
*
202 AwMainDelegate::CreateExternalVideoSurfaceContainer(
203 content::WebContents
* web_contents
) {
204 return external_video_surface::ExternalVideoSurfaceContainerImpl::Create(
209 } // namespace android_webview