OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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/observer_list.h" | 11 #include "base/observer_list.h" |
12 #include "base/ref_counted.h" | 12 #include "base/ref_counted.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 "chrome/browser/appcache/chrome_appcache_service.h" | |
16 #include "chrome/browser/cancelable_request.h" | |
17 #include "chrome/common/notification_registrar.h" | 15 #include "chrome/common/notification_registrar.h" |
| 16 #include "content/browser/appcache/chrome_appcache_service.h" |
| 17 #include "content/browser/cancelable_request.h" |
18 | 18 |
19 class IOThread; | 19 class IOThread; |
20 class PluginDataRemover; | 20 class PluginDataRemover; |
21 class Profile; | 21 class Profile; |
22 class URLRequestContextGetter; | 22 class URLRequestContextGetter; |
23 | 23 |
24 namespace disk_cache { | 24 namespace disk_cache { |
25 class Backend; | 25 class Backend; |
26 } | 26 } |
27 | 27 |
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
218 | 218 |
219 ObserverList<Observer> observer_list_; | 219 ObserverList<Observer> observer_list_; |
220 | 220 |
221 // Used if we need to clear history. | 221 // Used if we need to clear history. |
222 CancelableRequestConsumer request_consumer_; | 222 CancelableRequestConsumer request_consumer_; |
223 | 223 |
224 DISALLOW_COPY_AND_ASSIGN(BrowsingDataRemover); | 224 DISALLOW_COPY_AND_ASSIGN(BrowsingDataRemover); |
225 }; | 225 }; |
226 | 226 |
227 #endif // CHROME_BROWSER_BROWSING_DATA_REMOVER_H_ | 227 #endif // CHROME_BROWSER_BROWSING_DATA_REMOVER_H_ |
OLD | NEW |