Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(966)

Side by Side Diff: android_webview/lib/main/aw_main_delegate.cc

Issue 19522006: GLInProcessContext: support async flushes and dedicated GPU thread (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove tls Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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/scoped_allow_wait_for_legacy_web_view_api.h" 8 #include "android_webview/browser/scoped_allow_wait_for_legacy_web_view_api.h"
9 #include "android_webview/lib/aw_browser_dependency_factory_impl.h" 9 #include "android_webview/lib/aw_browser_dependency_factory_impl.h"
10 #include "android_webview/native/aw_geolocation_permission_context.h" 10 #include "android_webview/native/aw_geolocation_permission_context.h"
11 #include "android_webview/native/aw_quota_manager_bridge_impl.h" 11 #include "android_webview/native/aw_quota_manager_bridge_impl.h"
12 #include "android_webview/native/aw_web_contents_view_delegate.h" 12 #include "android_webview/native/aw_web_contents_view_delegate.h"
13 #include "android_webview/renderer/aw_content_renderer_client.h" 13 #include "android_webview/renderer/aw_content_renderer_client.h"
14 #include "base/command_line.h" 14 #include "base/command_line.h"
15 #include "base/lazy_instance.h" 15 #include "base/lazy_instance.h"
16 #include "base/logging.h" 16 #include "base/logging.h"
17 #include "base/memory/scoped_ptr.h" 17 #include "base/memory/scoped_ptr.h"
18 #include "base/threading/thread_restrictions.h" 18 #include "base/threading/thread_restrictions.h"
19 #include "cc/base/switches.h" 19 #include "cc/base/switches.h"
20 #include "content/public/browser/browser_main_runner.h" 20 #include "content/public/browser/browser_main_runner.h"
21 #include "content/public/browser/browser_thread.h" 21 #include "content/public/browser/browser_thread.h"
22 #include "content/public/common/content_switches.h" 22 #include "content/public/common/content_switches.h"
23 #include "gpu/command_buffer/client/gl_in_process_context.h" 23 #include "gpu/command_buffer/service/in_process_command_buffer.h"
24 #include "webkit/common/gpu/webgraphicscontext3d_in_process_command_buffer_impl. h" 24 #include "webkit/common/gpu/webgraphicscontext3d_in_process_command_buffer_impl. h"
25 25
26 namespace android_webview { 26 namespace android_webview {
27 27
28 namespace { 28 namespace {
29 29
30 // TODO(boliu): Remove this global Allow once the underlying issues are 30 // TODO(boliu): Remove this global Allow once the underlying issues are
31 // resolved - http://crbug.com/240453. See AwMainDelegate::RunProcess below. 31 // resolved - http://crbug.com/240453. See AwMainDelegate::RunProcess below.
32 base::LazyInstance<scoped_ptr<ScopedAllowWaitForLegacyWebViewApi> > 32 base::LazyInstance<scoped_ptr<ScopedAllowWaitForLegacyWebViewApi> >
33 g_allow_wait_in_ui_thread = LAZY_INSTANCE_INITIALIZER; 33 g_allow_wait_in_ui_thread = LAZY_INSTANCE_INITIALIZER;
34 34
35 } 35 }
36 36
37 AwMainDelegate::AwMainDelegate() { 37 AwMainDelegate::AwMainDelegate() {
38 } 38 }
39 39
40 AwMainDelegate::~AwMainDelegate() { 40 AwMainDelegate::~AwMainDelegate() {
41 } 41 }
42 42
43 bool AwMainDelegate::BasicStartupComplete(int* exit_code) { 43 bool AwMainDelegate::BasicStartupComplete(int* exit_code) {
44 content::SetContentClient(&content_client_); 44 content::SetContentClient(&content_client_);
45 45
46 gpu::GLInProcessContext::EnableVirtualizedContext(); 46 gpu::InProcessCommandBuffer::EnableVirtualizedContext();
47 47
48 CommandLine* cl = CommandLine::ForCurrentProcess(); 48 CommandLine* cl = CommandLine::ForCurrentProcess();
49 cl->AppendSwitch(switches::kEnableBeginFrameScheduling); 49 cl->AppendSwitch(switches::kEnableBeginFrameScheduling);
50 if (!cl->HasSwitch("disable-map-image")) 50 if (!cl->HasSwitch("disable-map-image"))
51 cl->AppendSwitch(cc::switches::kUseMapImage); 51 cl->AppendSwitch(cc::switches::kUseMapImage);
52 52
53 // WebView uses the Android system's scrollbars and overscroll glow. 53 // WebView uses the Android system's scrollbars and overscroll glow.
54 cl->AppendSwitch(switches::kHideScrollbars); 54 cl->AppendSwitch(switches::kHideScrollbars);
55 cl->AppendSwitch(switches::kDisableOverscrollEdgeEffect); 55 cl->AppendSwitch(switches::kDisableOverscrollEdgeEffect);
56 56
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 AwBrowserContext* browser_context) { 115 AwBrowserContext* browser_context) {
116 return AwGeolocationPermissionContext::Create(browser_context); 116 return AwGeolocationPermissionContext::Create(browser_context);
117 } 117 }
118 118
119 content::WebContentsViewDelegate* AwMainDelegate::CreateViewDelegate( 119 content::WebContentsViewDelegate* AwMainDelegate::CreateViewDelegate(
120 content::WebContents* web_contents) { 120 content::WebContents* web_contents) {
121 return AwWebContentsViewDelegate::Create(web_contents); 121 return AwWebContentsViewDelegate::Create(web_contents);
122 } 122 }
123 123
124 } // namespace android_webview 124 } // namespace android_webview
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698