| 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 #ifndef CHROME_BROWSER_BROWSING_DATA_BROWSING_DATA_REMOVER_H_ | 5 #ifndef CHROME_BROWSER_BROWSING_DATA_BROWSING_DATA_REMOVER_H_ |
| 6 #define CHROME_BROWSER_BROWSING_DATA_BROWSING_DATA_REMOVER_H_ | 6 #define CHROME_BROWSER_BROWSING_DATA_BROWSING_DATA_REMOVER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <queue> | 10 #include <queue> |
| 11 #include <set> | 11 #include <set> |
| 12 | 12 |
| 13 #include "base/callback_forward.h" | 13 #include "base/callback_forward.h" |
| 14 #include "base/gtest_prod_util.h" | 14 #include "base/gtest_prod_util.h" |
| 15 #include "base/macros.h" | 15 #include "base/macros.h" |
| 16 #include "base/memory/ref_counted.h" | 16 #include "base/memory/ref_counted.h" |
| 17 #include "base/memory/weak_ptr.h" | 17 #include "base/memory/weak_ptr.h" |
| 18 #include "base/observer_list.h" | 18 #include "base/observer_list.h" |
| 19 #include "base/sequenced_task_runner_helpers.h" | 19 #include "base/sequenced_task_runner_helpers.h" |
| 20 #include "base/synchronization/waitable_event_watcher.h" | 20 #include "base/synchronization/waitable_event_watcher.h" |
| 21 #include "base/task/cancelable_task_tracker.h" | 21 #include "base/task/cancelable_task_tracker.h" |
| 22 #include "base/time/time.h" | 22 #include "base/time/time.h" |
| 23 #include "build/build_config.h" | 23 #include "build/build_config.h" |
| 24 #include "chrome/common/features.h" | 24 #include "chrome/common/features.h" |
| 25 #include "components/browsing_data/core/browsing_data_utils.h" | 25 #include "components/browsing_data/core/browsing_data_utils.h" |
| 26 #include "components/content_settings/core/common/content_settings_pattern.h" | 26 #include "components/content_settings/core/common/content_settings_pattern.h" |
| 27 #include "components/content_settings/core/common/content_settings_types.h" | 27 #include "components/content_settings/core/common/content_settings_types.h" |
| 28 #include "components/keyed_service/core/keyed_service.h" | 28 #include "components/keyed_service/core/keyed_service.h" |
| 29 #include "components/offline_pages/offline_page_model.h" | 29 #include "components/offline_pages/core/offline_page_model.h" |
| 30 #include "components/prefs/pref_member.h" | 30 #include "components/prefs/pref_member.h" |
| 31 #include "components/search_engines/template_url_service.h" | 31 #include "components/search_engines/template_url_service.h" |
| 32 #include "media/media_features.h" | 32 #include "media/media_features.h" |
| 33 #include "ppapi/features/features.h" | 33 #include "ppapi/features/features.h" |
| 34 #include "storage/common/quota/quota_types.h" | 34 #include "storage/common/quota/quota_types.h" |
| 35 #include "url/gurl.h" | 35 #include "url/gurl.h" |
| 36 | 36 |
| 37 #if BUILDFLAG(ENABLE_PLUGINS) | 37 #if BUILDFLAG(ENABLE_PLUGINS) |
| 38 #include "chrome/browser/pepper_flash_settings_manager.h" | 38 #include "chrome/browser/pepper_flash_settings_manager.h" |
| 39 #endif | 39 #endif |
| (...skipping 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 566 // not initialised, so the registry must be mocked out. | 566 // not initialised, so the registry must be mocked out. |
| 567 std::unique_ptr<WebappRegistry> webapp_registry_; | 567 std::unique_ptr<WebappRegistry> webapp_registry_; |
| 568 #endif | 568 #endif |
| 569 | 569 |
| 570 base::WeakPtrFactory<BrowsingDataRemover> weak_ptr_factory_; | 570 base::WeakPtrFactory<BrowsingDataRemover> weak_ptr_factory_; |
| 571 | 571 |
| 572 DISALLOW_COPY_AND_ASSIGN(BrowsingDataRemover); | 572 DISALLOW_COPY_AND_ASSIGN(BrowsingDataRemover); |
| 573 }; | 573 }; |
| 574 | 574 |
| 575 #endif // CHROME_BROWSER_BROWSING_DATA_BROWSING_DATA_REMOVER_H_ | 575 #endif // CHROME_BROWSER_BROWSING_DATA_BROWSING_DATA_REMOVER_H_ |
| OLD | NEW |