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

Side by Side Diff: android_webview/browser/aw_browser_main_parts.cc

Issue 2876013002: Add missing IWYU message_loop.h includes. (Closed)
Patch Set: fix upstream 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/browser/aw_browser_main_parts.h" 5 #include "android_webview/browser/aw_browser_main_parts.h"
6 6
7 #include "android_webview/browser/aw_browser_context.h" 7 #include "android_webview/browser/aw_browser_context.h"
8 #include "android_webview/browser/aw_browser_terminator.h" 8 #include "android_webview/browser/aw_browser_terminator.h"
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_result_codes.h" 10 #include "android_webview/browser/aw_result_codes.h"
11 #include "android_webview/browser/deferred_gpu_command_service.h" 11 #include "android_webview/browser/deferred_gpu_command_service.h"
12 #include "android_webview/browser/net/aw_network_change_notifier_factory.h" 12 #include "android_webview/browser/net/aw_network_change_notifier_factory.h"
13 #include "android_webview/common/aw_descriptors.h" 13 #include "android_webview/common/aw_descriptors.h"
14 #include "android_webview/common/aw_paths.h" 14 #include "android_webview/common/aw_paths.h"
15 #include "android_webview/common/aw_resource.h" 15 #include "android_webview/common/aw_resource.h"
16 #include "android_webview/common/aw_switches.h" 16 #include "android_webview/common/aw_switches.h"
17 #include "android_webview/common/crash_reporter/aw_microdump_crash_reporter.h" 17 #include "android_webview/common/crash_reporter/aw_microdump_crash_reporter.h"
18 #include "base/android/apk_assets.h" 18 #include "base/android/apk_assets.h"
19 #include "base/android/build_info.h" 19 #include "base/android/build_info.h"
20 #include "base/android/locale_utils.h" 20 #include "base/android/locale_utils.h"
21 #include "base/android/memory_pressure_listener_android.h" 21 #include "base/android/memory_pressure_listener_android.h"
22 #include "base/command_line.h" 22 #include "base/command_line.h"
23 #include "base/files/file_path.h" 23 #include "base/files/file_path.h"
24 #include "base/i18n/rtl.h" 24 #include "base/i18n/rtl.h"
25 #include "base/message_loop/message_loop.h"
25 #include "base/path_service.h" 26 #include "base/path_service.h"
26 #include "components/crash/content/browser/crash_dump_manager_android.h" 27 #include "components/crash/content/browser/crash_dump_manager_android.h"
27 #include "components/crash/content/browser/crash_dump_observer_android.h" 28 #include "components/crash/content/browser/crash_dump_observer_android.h"
28 #include "content/public/browser/android/synchronous_compositor.h" 29 #include "content/public/browser/android/synchronous_compositor.h"
29 #include "content/public/browser/render_frame_host.h" 30 #include "content/public/browser/render_frame_host.h"
30 #include "content/public/browser/render_process_host.h" 31 #include "content/public/browser/render_process_host.h"
31 #include "content/public/common/content_client.h" 32 #include "content/public/common/content_client.h"
32 #include "content/public/common/content_switches.h" 33 #include "content/public/common/content_switches.h"
33 #include "content/public/common/result_codes.h" 34 #include "content/public/common/result_codes.h"
34 #include "device/geolocation/access_token_store.h" 35 #include "device/geolocation/access_token_store.h"
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 content::RenderFrameHost::AllowInjectingJavaScriptForAndroidWebView(); 152 content::RenderFrameHost::AllowInjectingJavaScriptForAndroidWebView();
152 } 153 }
153 154
154 bool AwBrowserMainParts::MainMessageLoopRun(int* result_code) { 155 bool AwBrowserMainParts::MainMessageLoopRun(int* result_code) {
155 // Android WebView does not use default MessageLoop. It has its own 156 // Android WebView does not use default MessageLoop. It has its own
156 // Android specific MessageLoop. 157 // Android specific MessageLoop.
157 return true; 158 return true;
158 } 159 }
159 160
160 } // namespace android_webview 161 } // namespace android_webview
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698