OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "android_webview/lib/main/aw_main_delegate.h" | 5 #include "android_webview/lib/main/aw_main_delegate.h" |
6 | 6 |
7 #include "android_webview/browser/aw_content_browser_client.h" | 7 #include "android_webview/browser/aw_content_browser_client.h" |
8 #include "android_webview/browser/browser_view_renderer.h" | 8 #include "android_webview/browser/browser_view_renderer.h" |
9 #include "android_webview/browser/gpu_memory_buffer_factory_impl.h" | 9 #include "android_webview/browser/gpu_memory_buffer_factory_impl.h" |
10 #include "android_webview/browser/scoped_allow_wait_for_legacy_web_view_api.h" | 10 #include "android_webview/browser/scoped_allow_wait_for_legacy_web_view_api.h" |
11 #include "android_webview/lib/aw_browser_dependency_factory_impl.h" | 11 #include "android_webview/lib/aw_browser_dependency_factory_impl.h" |
| 12 #include "android_webview/native/aw_media_url_interceptor.h" |
12 #include "android_webview/native/aw_quota_manager_bridge_impl.h" | 13 #include "android_webview/native/aw_quota_manager_bridge_impl.h" |
13 #include "android_webview/native/aw_web_contents_view_delegate.h" | 14 #include "android_webview/native/aw_web_contents_view_delegate.h" |
14 #include "android_webview/native/aw_web_preferences_populater_impl.h" | 15 #include "android_webview/native/aw_web_preferences_populater_impl.h" |
15 #include "android_webview/native/external_video_surface_container_impl.h" | 16 #include "android_webview/native/external_video_surface_container_impl.h" |
16 #include "android_webview/renderer/aw_content_renderer_client.h" | 17 #include "android_webview/renderer/aw_content_renderer_client.h" |
17 #include "base/command_line.h" | 18 #include "base/command_line.h" |
18 #include "base/cpu.h" | 19 #include "base/cpu.h" |
19 #include "base/lazy_instance.h" | 20 #include "base/lazy_instance.h" |
20 #include "base/logging.h" | 21 #include "base/logging.h" |
21 #include "base/memory/scoped_ptr.h" | 22 #include "base/memory/scoped_ptr.h" |
22 #include "base/threading/thread_restrictions.h" | 23 #include "base/threading/thread_restrictions.h" |
| 24 #include "content/browser/media/android/browser_media_player_manager.h" |
23 #include "content/public/browser/browser_main_runner.h" | 25 #include "content/public/browser/browser_main_runner.h" |
24 #include "content/public/browser/browser_thread.h" | 26 #include "content/public/browser/browser_thread.h" |
25 #include "content/public/common/content_switches.h" | 27 #include "content/public/common/content_switches.h" |
26 #include "gpu/command_buffer/client/gl_in_process_context.h" | 28 #include "gpu/command_buffer/client/gl_in_process_context.h" |
27 #include "gpu/command_buffer/service/in_process_command_buffer.h" | 29 #include "gpu/command_buffer/service/in_process_command_buffer.h" |
28 #include "media/base/media_switches.h" | 30 #include "media/base/media_switches.h" |
29 #include "webkit/common/gpu/webgraphicscontext3d_in_process_command_buffer_impl.
h" | 31 #include "webkit/common/gpu/webgraphicscontext3d_in_process_command_buffer_impl.
h" |
30 | 32 |
31 namespace android_webview { | 33 namespace android_webview { |
32 | 34 |
(...skipping 12 matching lines...) Expand all Loading... |
45 | 47 |
46 AwMainDelegate::~AwMainDelegate() { | 48 AwMainDelegate::~AwMainDelegate() { |
47 } | 49 } |
48 | 50 |
49 bool AwMainDelegate::BasicStartupComplete(int* exit_code) { | 51 bool AwMainDelegate::BasicStartupComplete(int* exit_code) { |
50 content::SetContentClient(&content_client_); | 52 content::SetContentClient(&content_client_); |
51 | 53 |
52 gpu::InProcessCommandBuffer::SetGpuMemoryBufferFactory( | 54 gpu::InProcessCommandBuffer::SetGpuMemoryBufferFactory( |
53 gpu_memory_buffer_factory_.get()); | 55 gpu_memory_buffer_factory_.get()); |
54 | 56 |
| 57 content::BrowserMediaPlayerManager::RegisterMediaUrlInterceptor( |
| 58 new AwMediaUrlInterceptor()); |
| 59 |
55 BrowserViewRenderer::CalculateTileMemoryPolicy(); | 60 BrowserViewRenderer::CalculateTileMemoryPolicy(); |
56 | 61 |
57 CommandLine* cl = CommandLine::ForCurrentProcess(); | 62 CommandLine* cl = CommandLine::ForCurrentProcess(); |
58 cl->AppendSwitch(switches::kEnableBeginFrameScheduling); | 63 cl->AppendSwitch(switches::kEnableBeginFrameScheduling); |
59 cl->AppendSwitch(switches::kEnableZeroCopy); | 64 cl->AppendSwitch(switches::kEnableZeroCopy); |
60 cl->AppendSwitch(switches::kEnableImplSidePainting); | 65 cl->AppendSwitch(switches::kEnableImplSidePainting); |
61 | 66 |
62 // WebView uses the Android system's scrollbars and overscroll glow. | 67 // WebView uses the Android system's scrollbars and overscroll glow. |
63 cl->AppendSwitch(switches::kDisableOverscrollEdgeEffect); | 68 cl->AppendSwitch(switches::kDisableOverscrollEdgeEffect); |
64 | 69 |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 | 153 |
149 #if defined(VIDEO_HOLE) | 154 #if defined(VIDEO_HOLE) |
150 content::ExternalVideoSurfaceContainer* | 155 content::ExternalVideoSurfaceContainer* |
151 AwMainDelegate::CreateExternalVideoSurfaceContainer( | 156 AwMainDelegate::CreateExternalVideoSurfaceContainer( |
152 content::WebContents* web_contents) { | 157 content::WebContents* web_contents) { |
153 return new ExternalVideoSurfaceContainerImpl(web_contents); | 158 return new ExternalVideoSurfaceContainerImpl(web_contents); |
154 } | 159 } |
155 #endif | 160 #endif |
156 | 161 |
157 } // namespace android_webview | 162 } // namespace android_webview |
OLD | NEW |