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/scoped_allow_wait_for_legacy_web_view_api.h" | 9 #include "android_webview/browser/scoped_allow_wait_for_legacy_web_view_api.h" |
10 #include "android_webview/lib/aw_browser_dependency_factory_impl.h" | 10 #include "android_webview/lib/aw_browser_dependency_factory_impl.h" |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
75 // Support EME/L1 with hole-punching. | 75 // Support EME/L1 with hole-punching. |
76 cl->AppendSwitch(switches::kMediaDrmEnableNonCompositing); | 76 cl->AppendSwitch(switches::kMediaDrmEnableNonCompositing); |
77 #endif | 77 #endif |
78 | 78 |
79 // WebRTC hardware decoding is not supported, internal bug 15075307 | 79 // WebRTC hardware decoding is not supported, internal bug 15075307 |
80 cl->AppendSwitch(switches::kDisableWebRtcHWDecoding); | 80 cl->AppendSwitch(switches::kDisableWebRtcHWDecoding); |
81 | 81 |
82 // This is needed for sharing textures across the different GL threads. | 82 // This is needed for sharing textures across the different GL threads. |
83 cl->AppendSwitch(switches::kEnableThreadedTextureMailboxes); | 83 cl->AppendSwitch(switches::kEnableThreadedTextureMailboxes); |
84 | 84 |
85 // FIXME: A couple of tests fail with the blink scheduler enabled. | |
rmcilroy
2014/12/22 15:58:05
Nit - please create a bug and link to it into the
alex clarke (OOO till 29th)
2014/12/22 16:28:18
Done.
| |
86 cl->AppendSwitch(switches::kDisableBlinkScheduler); | |
87 | |
85 return false; | 88 return false; |
86 } | 89 } |
87 | 90 |
88 void AwMainDelegate::PreSandboxStartup() { | 91 void AwMainDelegate::PreSandboxStartup() { |
89 // TODO(torne): When we have a separate renderer process, we need to handle | 92 // TODO(torne): When we have a separate renderer process, we need to handle |
90 // being passed open FDs for the resource paks here. | 93 // being passed open FDs for the resource paks here. |
91 #if defined(ARCH_CPU_ARM_FAMILY) | 94 #if defined(ARCH_CPU_ARM_FAMILY) |
92 // Create an instance of the CPU class to parse /proc/cpuinfo and cache | 95 // Create an instance of the CPU class to parse /proc/cpuinfo and cache |
93 // cpu_brand info. | 96 // cpu_brand info. |
94 base::CPU cpu_info; | 97 base::CPU cpu_info; |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
154 | 157 |
155 #if defined(VIDEO_HOLE) | 158 #if defined(VIDEO_HOLE) |
156 content::ExternalVideoSurfaceContainer* | 159 content::ExternalVideoSurfaceContainer* |
157 AwMainDelegate::CreateExternalVideoSurfaceContainer( | 160 AwMainDelegate::CreateExternalVideoSurfaceContainer( |
158 content::WebContents* web_contents) { | 161 content::WebContents* web_contents) { |
159 return new ExternalVideoSurfaceContainerImpl(web_contents); | 162 return new ExternalVideoSurfaceContainerImpl(web_contents); |
160 } | 163 } |
161 #endif | 164 #endif |
162 | 165 |
163 } // namespace android_webview | 166 } // namespace android_webview |
OLD | NEW |