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_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 <set> | 9 #include <set> |
10 | 10 |
11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
12 #include "base/message_loop_helpers.h" | 12 #include "base/message_loop_helpers.h" |
13 #include "base/observer_list.h" | 13 #include "base/observer_list.h" |
14 #include "base/synchronization/waitable_event_watcher.h" | 14 #include "base/synchronization/waitable_event_watcher.h" |
15 #include "base/time.h" | 15 #include "base/time.h" |
16 #include "chrome/browser/cancelable_request.h" | 16 #include "chrome/browser/cancelable_request.h" |
17 #include "chrome/browser/prefs/pref_member.h" | 17 #include "chrome/browser/prefs/pref_member.h" |
18 #include "content/browser/appcache/chrome_appcache_service.h" | |
19 #include "content/public/browser/notification_observer.h" | 18 #include "content/public/browser/notification_observer.h" |
20 #include "content/public/browser/notification_registrar.h" | 19 #include "content/public/browser/notification_registrar.h" |
| 20 #include "googleurl/src/gurl.h" |
21 #include "webkit/quota/quota_types.h" | 21 #include "webkit/quota/quota_types.h" |
22 | 22 |
23 class ExtensionSpecialStoragePolicy; | 23 class ExtensionSpecialStoragePolicy; |
24 class IOThread; | 24 class IOThread; |
25 class Profile; | 25 class Profile; |
26 | 26 |
27 namespace content { | 27 namespace content { |
28 class PluginDataRemover; | 28 class PluginDataRemover; |
29 } | 29 } |
30 | 30 |
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
317 | 317 |
318 ObserverList<Observer> observer_list_; | 318 ObserverList<Observer> observer_list_; |
319 | 319 |
320 // Used if we need to clear history. | 320 // Used if we need to clear history. |
321 CancelableRequestConsumer request_consumer_; | 321 CancelableRequestConsumer request_consumer_; |
322 | 322 |
323 DISALLOW_COPY_AND_ASSIGN(BrowsingDataRemover); | 323 DISALLOW_COPY_AND_ASSIGN(BrowsingDataRemover); |
324 }; | 324 }; |
325 | 325 |
326 #endif // CHROME_BROWSER_BROWSING_DATA_REMOVER_H_ | 326 #endif // CHROME_BROWSER_BROWSING_DATA_REMOVER_H_ |
OLD | NEW |