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" |
(...skipping 26 matching lines...) Expand all Loading... |
37 } | 37 } |
38 | 38 |
39 namespace disk_cache { | 39 namespace disk_cache { |
40 class Backend; | 40 class Backend; |
41 } | 41 } |
42 | 42 |
43 namespace net { | 43 namespace net { |
44 class URLRequestContextGetter; | 44 class URLRequestContextGetter; |
45 } | 45 } |
46 | 46 |
47 namespace quota { | 47 namespace storage { |
48 class QuotaManager; | 48 class QuotaManager; |
49 } | 49 } |
50 | 50 |
51 namespace content { | 51 namespace content { |
52 class DOMStorageContext; | 52 class DOMStorageContext; |
53 struct LocalStorageUsageInfo; | 53 struct LocalStorageUsageInfo; |
54 struct SessionStorageUsageInfo; | 54 struct SessionStorageUsageInfo; |
55 } | 55 } |
56 | 56 |
57 // BrowsingDataRemover is responsible for removing data related to browsing: | 57 // BrowsingDataRemover is responsible for removing data related to browsing: |
(...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
458 | 458 |
459 scoped_ptr<TemplateURLService::Subscription> template_url_sub_; | 459 scoped_ptr<TemplateURLService::Subscription> template_url_sub_; |
460 | 460 |
461 // We do not own this. | 461 // We do not own this. |
462 content::StoragePartition* storage_partition_for_testing_; | 462 content::StoragePartition* storage_partition_for_testing_; |
463 | 463 |
464 DISALLOW_COPY_AND_ASSIGN(BrowsingDataRemover); | 464 DISALLOW_COPY_AND_ASSIGN(BrowsingDataRemover); |
465 }; | 465 }; |
466 | 466 |
467 #endif // CHROME_BROWSER_BROWSING_DATA_BROWSING_DATA_REMOVER_H_ | 467 #endif // CHROME_BROWSER_BROWSING_DATA_BROWSING_DATA_REMOVER_H_ |
OLD | NEW |