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 <set> | 8 #include <set> |
9 | 9 |
10 #include "base/gtest_prod_util.h" | 10 #include "base/gtest_prod_util.h" |
11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
12 #include "base/observer_list.h" | 12 #include "base/observer_list.h" |
13 #include "base/prefs/pref_member.h" | 13 #include "base/prefs/pref_member.h" |
14 #include "base/sequenced_task_runner_helpers.h" | 14 #include "base/sequenced_task_runner_helpers.h" |
15 #include "base/synchronization/waitable_event_watcher.h" | 15 #include "base/synchronization/waitable_event_watcher.h" |
16 #include "base/time.h" | 16 #include "base/time.h" |
17 #include "chrome/browser/pepper_flash_settings_manager.h" | 17 #include "chrome/browser/pepper_flash_settings_manager.h" |
18 #include "chrome/common/cancelable_task_tracker.h" | 18 #include "chrome/common/cancelable_task_tracker.h" |
19 #include "content/public/browser/dom_storage_context.h" | 19 #include "content/public/browser/dom_storage_context.h" |
20 #include "content/public/browser/notification_observer.h" | 20 #include "content/public/browser/notification_observer.h" |
21 #include "content/public/browser/notification_registrar.h" | 21 #include "content/public/browser/notification_registrar.h" |
22 #include "googleurl/src/gurl.h" | 22 #include "googleurl/src/gurl.h" |
23 #include "webkit/quota/quota_types.h" | 23 #include "webkit/common/quota/quota_types.h" |
24 | 24 |
25 class ExtensionSpecialStoragePolicy; | 25 class ExtensionSpecialStoragePolicy; |
26 class IOThread; | 26 class IOThread; |
27 class Profile; | 27 class Profile; |
28 | 28 |
29 namespace content { | 29 namespace content { |
30 class PluginDataRemover; | 30 class PluginDataRemover; |
31 } | 31 } |
32 | 32 |
33 namespace disk_cache { | 33 namespace disk_cache { |
(...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
436 | 436 |
437 ObserverList<Observer> observer_list_; | 437 ObserverList<Observer> observer_list_; |
438 | 438 |
439 // Used if we need to clear history. | 439 // Used if we need to clear history. |
440 CancelableTaskTracker history_task_tracker_; | 440 CancelableTaskTracker history_task_tracker_; |
441 | 441 |
442 DISALLOW_COPY_AND_ASSIGN(BrowsingDataRemover); | 442 DISALLOW_COPY_AND_ASSIGN(BrowsingDataRemover); |
443 }; | 443 }; |
444 | 444 |
445 #endif // CHROME_BROWSER_BROWSING_DATA_BROWSING_DATA_REMOVER_H_ | 445 #endif // CHROME_BROWSER_BROWSING_DATA_BROWSING_DATA_REMOVER_H_ |
OLD | NEW |