| 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/crash_reporter/aw_microdump_crash_reporter.h" | 10 #include "android_webview/crash_reporter/aw_microdump_crash_reporter.h" |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 } | 53 } |
| 54 | 54 |
| 55 bool AwMainDelegate::BasicStartupComplete(int* exit_code) { | 55 bool AwMainDelegate::BasicStartupComplete(int* exit_code) { |
| 56 content::SetContentClient(&content_client_); | 56 content::SetContentClient(&content_client_); |
| 57 | 57 |
| 58 content::RegisterMediaUrlInterceptor(new AwMediaUrlInterceptor()); | 58 content::RegisterMediaUrlInterceptor(new AwMediaUrlInterceptor()); |
| 59 | 59 |
| 60 BrowserViewRenderer::CalculateTileMemoryPolicy(); | 60 BrowserViewRenderer::CalculateTileMemoryPolicy(); |
| 61 | 61 |
| 62 base::CommandLine* cl = base::CommandLine::ForCurrentProcess(); | 62 base::CommandLine* cl = base::CommandLine::ForCurrentProcess(); |
| 63 cl->AppendSwitch(switches::kEnableBeginFrameScheduling); | |
| 64 | 63 |
| 65 // WebView uses the Android system's scrollbars and overscroll glow. | 64 // WebView uses the Android system's scrollbars and overscroll glow. |
| 66 cl->AppendSwitch(switches::kDisableOverscrollEdgeEffect); | 65 cl->AppendSwitch(switches::kDisableOverscrollEdgeEffect); |
| 67 | 66 |
| 68 // Pull-to-refresh should never be a default WebView action. | 67 // Pull-to-refresh should never be a default WebView action. |
| 69 cl->AppendSwitch(switches::kDisablePullToRefreshEffect); | 68 cl->AppendSwitch(switches::kDisablePullToRefreshEffect); |
| 70 | 69 |
| 71 // Not yet supported in single-process mode. | 70 // Not yet supported in single-process mode. |
| 72 cl->AppendSwitch(switches::kDisableSharedWorkers); | 71 cl->AppendSwitch(switches::kDisableSharedWorkers); |
| 73 | 72 |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 | 194 |
| 196 #if defined(VIDEO_HOLE) | 195 #if defined(VIDEO_HOLE) |
| 197 content::ExternalVideoSurfaceContainer* | 196 content::ExternalVideoSurfaceContainer* |
| 198 AwMainDelegate::CreateExternalVideoSurfaceContainer( | 197 AwMainDelegate::CreateExternalVideoSurfaceContainer( |
| 199 content::WebContents* web_contents) { | 198 content::WebContents* web_contents) { |
| 200 return new ExternalVideoSurfaceContainerImpl(web_contents); | 199 return new ExternalVideoSurfaceContainerImpl(web_contents); |
| 201 } | 200 } |
| 202 #endif | 201 #endif |
| 203 | 202 |
| 204 } // namespace android_webview | 203 } // namespace android_webview |
| OLD | NEW |