| 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 <set> | 10 #include <set> |
| 11 | 11 |
| 12 #include "base/gtest_prod_util.h" | 12 #include "base/gtest_prod_util.h" |
| 13 #include "base/macros.h" | 13 #include "base/macros.h" |
| 14 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
| 15 #include "base/memory/weak_ptr.h" | 15 #include "base/memory/weak_ptr.h" |
| 16 #include "base/observer_list.h" | 16 #include "base/observer_list.h" |
| 17 #include "base/prefs/pref_member.h" | |
| 18 #include "base/sequenced_task_runner_helpers.h" | 17 #include "base/sequenced_task_runner_helpers.h" |
| 19 #include "base/synchronization/waitable_event_watcher.h" | 18 #include "base/synchronization/waitable_event_watcher.h" |
| 20 #include "base/task/cancelable_task_tracker.h" | 19 #include "base/task/cancelable_task_tracker.h" |
| 21 #include "base/time/time.h" | 20 #include "base/time/time.h" |
| 22 #include "build/build_config.h" | 21 #include "build/build_config.h" |
| 23 #include "chrome/common/features.h" | 22 #include "chrome/common/features.h" |
| 24 #include "components/keyed_service/core/keyed_service.h" | 23 #include "components/keyed_service/core/keyed_service.h" |
| 24 #include "components/prefs/pref_member.h" |
| 25 #include "components/search_engines/template_url_service.h" | 25 #include "components/search_engines/template_url_service.h" |
| 26 #include "storage/common/quota/quota_types.h" | 26 #include "storage/common/quota/quota_types.h" |
| 27 #include "url/gurl.h" | 27 #include "url/gurl.h" |
| 28 #include "url/origin.h" | 28 #include "url/origin.h" |
| 29 | 29 |
| 30 #if defined(ENABLE_PLUGINS) | 30 #if defined(ENABLE_PLUGINS) |
| 31 #include "chrome/browser/pepper_flash_settings_manager.h" | 31 #include "chrome/browser/pepper_flash_settings_manager.h" |
| 32 #endif | 32 #endif |
| 33 | 33 |
| 34 #if defined(OS_CHROMEOS) | 34 #if defined(OS_CHROMEOS) |
| (...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 460 | 460 |
| 461 // We do not own this. | 461 // We do not own this. |
| 462 content::StoragePartition* storage_partition_for_testing_ = nullptr; | 462 content::StoragePartition* storage_partition_for_testing_ = nullptr; |
| 463 | 463 |
| 464 base::WeakPtrFactory<BrowsingDataRemover> weak_ptr_factory_; | 464 base::WeakPtrFactory<BrowsingDataRemover> weak_ptr_factory_; |
| 465 | 465 |
| 466 DISALLOW_COPY_AND_ASSIGN(BrowsingDataRemover); | 466 DISALLOW_COPY_AND_ASSIGN(BrowsingDataRemover); |
| 467 }; | 467 }; |
| 468 | 468 |
| 469 #endif // CHROME_BROWSER_BROWSING_DATA_BROWSING_DATA_REMOVER_H_ | 469 #endif // CHROME_BROWSER_BROWSING_DATA_BROWSING_DATA_REMOVER_H_ |
| OLD | NEW |