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

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

Issue 2863233002: [WebView] Move files from native to browser (Closed)
Patch Set: Created 3 years, 7 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
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 <memory> 7 #include <memory>
8 8
9 #include "android_webview/browser/aw_content_browser_client.h" 9 #include "android_webview/browser/aw_content_browser_client.h"
10 #include "android_webview/browser/aw_locale_manager_impl.h"
11 #include "android_webview/browser/aw_media_url_interceptor.h"
12 #include "android_webview/browser/aw_quota_manager_bridge_impl.h"
10 #include "android_webview/browser/aw_safe_browsing_config_helper.h" 13 #include "android_webview/browser/aw_safe_browsing_config_helper.h"
14 #include "android_webview/browser/aw_web_contents_view_delegate.h"
15 #include "android_webview/browser/aw_web_preferences_populater_impl.h"
11 #include "android_webview/browser/browser_view_renderer.h" 16 #include "android_webview/browser/browser_view_renderer.h"
12 #include "android_webview/browser/command_line_helper.h" 17 #include "android_webview/browser/command_line_helper.h"
13 #include "android_webview/browser/deferred_gpu_command_service.h" 18 #include "android_webview/browser/deferred_gpu_command_service.h"
14 #include "android_webview/common/aw_descriptors.h" 19 #include "android_webview/common/aw_descriptors.h"
15 #include "android_webview/common/aw_paths.h" 20 #include "android_webview/common/aw_paths.h"
16 #include "android_webview/common/aw_switches.h" 21 #include "android_webview/common/aw_switches.h"
17 #include "android_webview/common/crash_reporter/aw_microdump_crash_reporter.h" 22 #include "android_webview/common/crash_reporter/aw_microdump_crash_reporter.h"
18 #include "android_webview/common/crash_reporter/crash_keys.h" 23 #include "android_webview/common/crash_reporter/crash_keys.h"
19 #include "android_webview/gpu/aw_content_gpu_client.h" 24 #include "android_webview/gpu/aw_content_gpu_client.h"
20 #include "android_webview/native/aw_locale_manager_impl.h"
21 #include "android_webview/native/aw_media_url_interceptor.h"
22 #include "android_webview/native/aw_quota_manager_bridge_impl.h"
23 #include "android_webview/native/aw_web_contents_view_delegate.h"
24 #include "android_webview/native/aw_web_preferences_populater_impl.h"
25 #include "android_webview/renderer/aw_content_renderer_client.h" 25 #include "android_webview/renderer/aw_content_renderer_client.h"
26 #include "base/android/apk_assets.h" 26 #include "base/android/apk_assets.h"
27 #include "base/android/build_info.h" 27 #include "base/android/build_info.h"
28 #include "base/command_line.h" 28 #include "base/command_line.h"
29 #include "base/cpu.h" 29 #include "base/cpu.h"
30 #include "base/debug/crash_logging.h" 30 #include "base/debug/crash_logging.h"
31 #include "base/i18n/icu_util.h" 31 #include "base/i18n/icu_util.h"
32 #include "base/lazy_instance.h" 32 #include "base/lazy_instance.h"
33 #include "base/logging.h" 33 #include "base/logging.h"
34 #include "base/strings/string_number_conversions.h" 34 #include "base/strings/string_number_conversions.h"
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 280
281 AwWebPreferencesPopulater* AwMainDelegate::CreateWebPreferencesPopulater() { 281 AwWebPreferencesPopulater* AwMainDelegate::CreateWebPreferencesPopulater() {
282 return new AwWebPreferencesPopulaterImpl(); 282 return new AwWebPreferencesPopulaterImpl();
283 } 283 }
284 284
285 AwLocaleManager* AwMainDelegate::CreateAwLocaleManager() { 285 AwLocaleManager* AwMainDelegate::CreateAwLocaleManager() {
286 return new AwLocaleManagerImpl(); 286 return new AwLocaleManagerImpl();
287 } 287 }
288 288
289 } // namespace android_webview 289 } // namespace android_webview
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698