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

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

Issue 2884763002: Automated IWYU fix for TaskRunner includes. (Closed)
Patch Set: rebase on r472096 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
« no previous file with comments | « no previous file | android_webview/browser/net/aw_url_request_context_getter.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_context.h" 5 #include "android_webview/browser/aw_browser_context.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "android_webview/browser/aw_browser_policy_connector.h" 9 #include "android_webview/browser/aw_browser_policy_connector.h"
10 #include "android_webview/browser/aw_form_database_service.h" 10 #include "android_webview/browser/aw_form_database_service.h"
11 #include "android_webview/browser/aw_metrics_service_client.h" 11 #include "android_webview/browser/aw_metrics_service_client.h"
12 #include "android_webview/browser/aw_permission_manager.h" 12 #include "android_webview/browser/aw_permission_manager.h"
13 #include "android_webview/browser/aw_quota_manager_bridge.h" 13 #include "android_webview/browser/aw_quota_manager_bridge.h"
14 #include "android_webview/browser/aw_resource_context.h" 14 #include "android_webview/browser/aw_resource_context.h"
15 #include "android_webview/browser/jni_dependency_factory.h" 15 #include "android_webview/browser/jni_dependency_factory.h"
16 #include "android_webview/browser/net/aw_url_request_context_getter.h" 16 #include "android_webview/browser/net/aw_url_request_context_getter.h"
17 #include "android_webview/common/aw_content_client.h" 17 #include "android_webview/common/aw_content_client.h"
18 #include "base/base_paths_android.h" 18 #include "base/base_paths_android.h"
19 #include "base/bind.h" 19 #include "base/bind.h"
20 #include "base/files/file_util.h" 20 #include "base/files/file_util.h"
21 #include "base/path_service.h" 21 #include "base/path_service.h"
22 #include "base/single_thread_task_runner.h"
22 #include "base/task_scheduler/post_task.h" 23 #include "base/task_scheduler/post_task.h"
23 #include "components/autofill/core/common/autofill_pref_names.h" 24 #include "components/autofill/core/common/autofill_pref_names.h"
24 #include "components/metrics/metrics_service.h" 25 #include "components/metrics/metrics_service.h"
25 #include "components/policy/core/browser/browser_policy_connector_base.h" 26 #include "components/policy/core/browser/browser_policy_connector_base.h"
26 #include "components/policy/core/browser/configuration_policy_pref_store.h" 27 #include "components/policy/core/browser/configuration_policy_pref_store.h"
27 #include "components/policy/core/browser/url_blacklist_manager.h" 28 #include "components/policy/core/browser/url_blacklist_manager.h"
28 #include "components/pref_registry/pref_registry_syncable.h" 29 #include "components/pref_registry/pref_registry_syncable.h"
29 #include "components/prefs/in_memory_pref_store.h" 30 #include "components/prefs/in_memory_pref_store.h"
30 #include "components/prefs/pref_service.h" 31 #include "components/prefs/pref_service.h"
31 #include "components/prefs/pref_service_factory.h" 32 #include "components/prefs/pref_service_factory.h"
(...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after
401 402
402 void AwBrowserContext::RebuildTable( 403 void AwBrowserContext::RebuildTable(
403 const scoped_refptr<URLEnumerator>& enumerator) { 404 const scoped_refptr<URLEnumerator>& enumerator) {
404 // Android WebView rebuilds from WebChromeClient.getVisitedHistory. The client 405 // Android WebView rebuilds from WebChromeClient.getVisitedHistory. The client
405 // can change in the lifetime of this WebView and may not yet be set here. 406 // can change in the lifetime of this WebView and may not yet be set here.
406 // Therefore this initialization path is not used. 407 // Therefore this initialization path is not used.
407 enumerator->OnComplete(true); 408 enumerator->OnComplete(true);
408 } 409 }
409 410
410 } // namespace android_webview 411 } // namespace android_webview
OLDNEW
« no previous file with comments | « no previous file | android_webview/browser/net/aw_url_request_context_getter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698