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

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

Issue 2489443002: Move all components/offline_pages/ files into component/offline_pages/core (Closed)
Patch Set: rebase Created 4 years 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 #include <utility> 10 #include <utility>
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 #include "net/url_request/url_request_context.h" 89 #include "net/url_request/url_request_context.h"
90 #include "net/url_request/url_request_context_getter.h" 90 #include "net/url_request/url_request_context_getter.h"
91 #include "ppapi/features/features.h" 91 #include "ppapi/features/features.h"
92 #include "storage/browser/quota/special_storage_policy.h" 92 #include "storage/browser/quota/special_storage_policy.h"
93 #include "url/origin.h" 93 #include "url/origin.h"
94 94
95 #if BUILDFLAG(ANDROID_JAVA_UI) 95 #if BUILDFLAG(ANDROID_JAVA_UI)
96 #include "chrome/browser/android/offline_pages/offline_page_model_factory.h" 96 #include "chrome/browser/android/offline_pages/offline_page_model_factory.h"
97 #include "chrome/browser/android/webapps/webapp_registry.h" 97 #include "chrome/browser/android/webapps/webapp_registry.h"
98 #include "chrome/browser/precache/precache_manager_factory.h" 98 #include "chrome/browser/precache/precache_manager_factory.h"
99 #include "components/offline_pages/offline_page_feature.h" 99 #include "components/offline_pages/core/offline_page_feature.h"
100 #include "components/offline_pages/offline_page_model.h" 100 #include "components/offline_pages/core/offline_page_model.h"
101 #include "components/precache/content/precache_manager.h" 101 #include "components/precache/content/precache_manager.h"
102 #endif 102 #endif
103 103
104 #if BUILDFLAG(ENABLE_EXTENSIONS) 104 #if BUILDFLAG(ENABLE_EXTENSIONS)
105 #include "chrome/browser/extensions/activity_log/activity_log.h" 105 #include "chrome/browser/extensions/activity_log/activity_log.h"
106 #include "extensions/browser/extension_prefs.h" 106 #include "extensions/browser/extension_prefs.h"
107 #endif 107 #endif
108 108
109 #if BUILDFLAG(ENABLE_PLUGINS) 109 #if BUILDFLAG(ENABLE_PLUGINS)
110 #include "chrome/browser/browsing_data/browsing_data_flash_lso_helper.h" 110 #include "chrome/browser/browsing_data/browsing_data_flash_lso_helper.h"
(...skipping 1428 matching lines...) Expand 10 before | Expand all | Expand 10 after
1539 waiting_for_clear_offline_page_data_ = false; 1539 waiting_for_clear_offline_page_data_ = false;
1540 NotifyIfDone(); 1540 NotifyIfDone();
1541 } 1541 }
1542 #endif 1542 #endif
1543 1543
1544 void BrowsingDataRemover::OnClearedDomainReliabilityMonitor() { 1544 void BrowsingDataRemover::OnClearedDomainReliabilityMonitor() {
1545 DCHECK_CURRENTLY_ON(BrowserThread::UI); 1545 DCHECK_CURRENTLY_ON(BrowserThread::UI);
1546 waiting_for_clear_domain_reliability_monitor_ = false; 1546 waiting_for_clear_domain_reliability_monitor_ = false;
1547 NotifyIfDone(); 1547 NotifyIfDone();
1548 } 1548 }
OLDNEW
« no previous file with comments | « chrome/browser/browsing_data/browsing_data_remover.h ('k') | chrome/browser/net/net_error_tab_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698