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

Side by Side Diff: chrome/browser/browsing_data/browsing_data_remover.cc

Issue 2127403002: Make browsing_data component a layered component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed output_name from components/browsing_data/content/BUILD.gn Created 4 years, 5 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 "chrome/browser/browsing_data/browsing_data_remover.h" 5 #include "chrome/browser/browsing_data/browsing_data_remover.h"
6 6
7 #include <map> 7 #include <map>
8 #include <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 10
(...skipping 26 matching lines...) Expand all
37 #include "chrome/browser/profiles/profile.h" 37 #include "chrome/browser/profiles/profile.h"
38 #include "chrome/browser/safe_browsing/safe_browsing_service.h" 38 #include "chrome/browser/safe_browsing/safe_browsing_service.h"
39 #include "chrome/browser/search_engines/template_url_service_factory.h" 39 #include "chrome/browser/search_engines/template_url_service_factory.h"
40 #include "chrome/browser/sessions/tab_restore_service_factory.h" 40 #include "chrome/browser/sessions/tab_restore_service_factory.h"
41 #include "chrome/browser/web_data_service_factory.h" 41 #include "chrome/browser/web_data_service_factory.h"
42 #include "chrome/common/features.h" 42 #include "chrome/common/features.h"
43 #include "chrome/common/pref_names.h" 43 #include "chrome/common/pref_names.h"
44 #include "chrome/common/url_constants.h" 44 #include "chrome/common/url_constants.h"
45 #include "components/autofill/core/browser/personal_data_manager.h" 45 #include "components/autofill/core/browser/personal_data_manager.h"
46 #include "components/autofill/core/browser/webdata/autofill_webdata_service.h" 46 #include "components/autofill/core/browser/webdata/autofill_webdata_service.h"
47 #include "components/browsing_data/storage_partition_http_cache_data_remover.h" 47 #include "components/browsing_data/content/storage_partition_http_cache_data_rem over.h"
48 #include "components/content_settings/core/browser/host_content_settings_map.h" 48 #include "components/content_settings/core/browser/host_content_settings_map.h"
49 #include "components/content_settings/core/common/content_settings.h" 49 #include "components/content_settings/core/common/content_settings.h"
50 #include "components/content_settings/core/common/content_settings_pattern.h" 50 #include "components/content_settings/core/common/content_settings_pattern.h"
51 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_comp ression_stats.h" 51 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_comp ression_stats.h"
52 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_serv ice.h" 52 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_serv ice.h"
53 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_sett ings.h" 53 #include "components/data_reduction_proxy/core/browser/data_reduction_proxy_sett ings.h"
54 #include "components/domain_reliability/service.h" 54 #include "components/domain_reliability/service.h"
55 #include "components/history/core/browser/history_service.h" 55 #include "components/history/core/browser/history_service.h"
56 #include "components/nacl/browser/nacl_browser.h" 56 #include "components/nacl/browser/nacl_browser.h"
57 #include "components/nacl/browser/pnacl_host.h" 57 #include "components/nacl/browser/pnacl_host.h"
(...skipping 1255 matching lines...) Expand 10 before | Expand all | Expand 10 after
1313 waiting_for_clear_domain_reliability_monitor_ = false; 1313 waiting_for_clear_domain_reliability_monitor_ = false;
1314 NotifyIfDone(); 1314 NotifyIfDone();
1315 } 1315 }
1316 1316
1317 // static 1317 // static
1318 BrowsingDataRemover::CallbackSubscription 1318 BrowsingDataRemover::CallbackSubscription
1319 BrowsingDataRemover::RegisterOnBrowsingDataRemovedCallback( 1319 BrowsingDataRemover::RegisterOnBrowsingDataRemovedCallback(
1320 const BrowsingDataRemover::Callback& callback) { 1320 const BrowsingDataRemover::Callback& callback) {
1321 return GetOnBrowsingDataRemovedCallbacks()->Add(callback); 1321 return GetOnBrowsingDataRemovedCallbacks()->Add(callback);
1322 } 1322 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698