OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_REMOVER_H_ | 5 #ifndef CHROME_BROWSER_BROWSING_DATA_REMOVER_H_ |
6 #define CHROME_BROWSER_BROWSING_DATA_REMOVER_H_ | 6 #define CHROME_BROWSER_BROWSING_DATA_REMOVER_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
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/synchronization/waitable_event_watcher.h" | 13 #include "base/synchronization/waitable_event_watcher.h" |
14 #include "base/time.h" | 14 #include "base/time.h" |
15 #include "content/browser/appcache/chrome_appcache_service.h" | 15 #include "content/browser/appcache/chrome_appcache_service.h" |
16 #include "content/browser/cancelable_request.h" | 16 #include "content/browser/cancelable_request.h" |
| 17 #include "content/common/notification_observer.h" |
17 #include "content/common/notification_registrar.h" | 18 #include "content/common/notification_registrar.h" |
18 | 19 |
19 class ExtensionSpecialStoragePolicy; | 20 class ExtensionSpecialStoragePolicy; |
20 class IOThread; | 21 class IOThread; |
21 class PluginDataRemover; | 22 class PluginDataRemover; |
22 class Profile; | 23 class Profile; |
23 | 24 |
24 namespace disk_cache { | 25 namespace disk_cache { |
25 class Backend; | 26 class Backend; |
26 } | 27 } |
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
220 | 221 |
221 ObserverList<Observer> observer_list_; | 222 ObserverList<Observer> observer_list_; |
222 | 223 |
223 // Used if we need to clear history. | 224 // Used if we need to clear history. |
224 CancelableRequestConsumer request_consumer_; | 225 CancelableRequestConsumer request_consumer_; |
225 | 226 |
226 DISALLOW_COPY_AND_ASSIGN(BrowsingDataRemover); | 227 DISALLOW_COPY_AND_ASSIGN(BrowsingDataRemover); |
227 }; | 228 }; |
228 | 229 |
229 #endif // CHROME_BROWSER_BROWSING_DATA_REMOVER_H_ | 230 #endif // CHROME_BROWSER_BROWSING_DATA_REMOVER_H_ |
OLD | NEW |