| OLD | NEW |
| 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 #include "net/url_request/url_request_context.h" | 91 #include "net/url_request/url_request_context.h" |
| 92 #include "net/url_request/url_request_context_getter.h" | 92 #include "net/url_request/url_request_context_getter.h" |
| 93 #include "ppapi/features/features.h" | 93 #include "ppapi/features/features.h" |
| 94 #include "storage/browser/quota/special_storage_policy.h" | 94 #include "storage/browser/quota/special_storage_policy.h" |
| 95 #include "url/origin.h" | 95 #include "url/origin.h" |
| 96 | 96 |
| 97 #if BUILDFLAG(ANDROID_JAVA_UI) | 97 #if BUILDFLAG(ANDROID_JAVA_UI) |
| 98 #include "chrome/browser/android/offline_pages/offline_page_model_factory.h" | 98 #include "chrome/browser/android/offline_pages/offline_page_model_factory.h" |
| 99 #include "chrome/browser/android/webapps/webapp_registry.h" | 99 #include "chrome/browser/android/webapps/webapp_registry.h" |
| 100 #include "chrome/browser/precache/precache_manager_factory.h" | 100 #include "chrome/browser/precache/precache_manager_factory.h" |
| 101 #include "components/offline_pages/offline_page_feature.h" | 101 #include "components/offline_pages/core/offline_page_feature.h" |
| 102 #include "components/offline_pages/offline_page_model.h" | 102 #include "components/offline_pages/core/offline_page_model.h" |
| 103 #include "components/precache/content/precache_manager.h" | 103 #include "components/precache/content/precache_manager.h" |
| 104 #endif | 104 #endif |
| 105 | 105 |
| 106 #if BUILDFLAG(ENABLE_EXTENSIONS) | 106 #if BUILDFLAG(ENABLE_EXTENSIONS) |
| 107 #include "chrome/browser/extensions/activity_log/activity_log.h" | 107 #include "chrome/browser/extensions/activity_log/activity_log.h" |
| 108 #include "extensions/browser/extension_prefs.h" | 108 #include "extensions/browser/extension_prefs.h" |
| 109 #endif | 109 #endif |
| 110 | 110 |
| 111 #if BUILDFLAG(ENABLE_PLUGINS) | 111 #if BUILDFLAG(ENABLE_PLUGINS) |
| 112 #include "chrome/browser/browsing_data/browsing_data_flash_lso_helper.h" | 112 #include "chrome/browser/browsing_data/browsing_data_flash_lso_helper.h" |
| (...skipping 1435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1548 waiting_for_clear_offline_page_data_ = false; | 1548 waiting_for_clear_offline_page_data_ = false; |
| 1549 NotifyIfDone(); | 1549 NotifyIfDone(); |
| 1550 } | 1550 } |
| 1551 #endif | 1551 #endif |
| 1552 | 1552 |
| 1553 void BrowsingDataRemover::OnClearedDomainReliabilityMonitor() { | 1553 void BrowsingDataRemover::OnClearedDomainReliabilityMonitor() { |
| 1554 DCHECK_CURRENTLY_ON(BrowserThread::UI); | 1554 DCHECK_CURRENTLY_ON(BrowserThread::UI); |
| 1555 waiting_for_clear_domain_reliability_monitor_ = false; | 1555 waiting_for_clear_domain_reliability_monitor_ = false; |
| 1556 NotifyIfDone(); | 1556 NotifyIfDone(); |
| 1557 } | 1557 } |
| OLD | NEW |