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_LOCAL_DATA_CONTAINER_H_ | 5 #ifndef CHROME_BROWSER_BROWSING_DATA_LOCAL_DATA_CONTAINER_H_ |
6 #define CHROME_BROWSER_BROWSING_DATA_LOCAL_DATA_CONTAINER_H_ | 6 #define CHROME_BROWSER_BROWSING_DATA_LOCAL_DATA_CONTAINER_H_ |
7 | 7 |
8 #include <list> | 8 #include <list> |
9 #include <map> | 9 #include <map> |
10 #include <string> | 10 #include <string> |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
14 #include "base/memory/weak_ptr.h" | 14 #include "base/memory/weak_ptr.h" |
15 #include "base/string16.h" | 15 #include "base/string16.h" |
16 #include "chrome/browser/browsing_data/browsing_data_appcache_helper.h" | 16 #include "chrome/browser/browsing_data/browsing_data_appcache_helper.h" |
17 #include "chrome/browser/browsing_data/browsing_data_cookie_helper.h" | 17 #include "chrome/browser/browsing_data/browsing_data_cookie_helper.h" |
18 #include "chrome/browser/browsing_data/browsing_data_database_helper.h" | 18 #include "chrome/browser/browsing_data/browsing_data_database_helper.h" |
19 #include "chrome/browser/browsing_data/browsing_data_file_system_helper.h" | 19 #include "chrome/browser/browsing_data/browsing_data_file_system_helper.h" |
20 #include "chrome/browser/browsing_data/browsing_data_indexed_db_helper.h" | 20 #include "chrome/browser/browsing_data/browsing_data_indexed_db_helper.h" |
21 #include "chrome/browser/browsing_data/browsing_data_local_storage_helper.h" | 21 #include "chrome/browser/browsing_data/browsing_data_local_storage_helper.h" |
22 #include "chrome/browser/browsing_data/browsing_data_quota_helper.h" | 22 #include "chrome/browser/browsing_data/browsing_data_quota_helper.h" |
23 #include "chrome/browser/browsing_data/browsing_data_server_bound_cert_helper.h" | 23 #include "chrome/browser/browsing_data/browsing_data_server_bound_cert_helper.h" |
24 #include "net/base/server_bound_cert_store.h" | 24 #include "net/ssl/server_bound_cert_store.h" |
25 | 25 |
26 class BrowsingDataFlashLSOHelper; | 26 class BrowsingDataFlashLSOHelper; |
27 class CookiesTreeModel; | 27 class CookiesTreeModel; |
28 class LocalDataContainer; | 28 class LocalDataContainer; |
29 | 29 |
30 namespace net { | 30 namespace net { |
31 class CanonicalCookie; | 31 class CanonicalCookie; |
32 } | 32 } |
33 | 33 |
34 // Friendly typedefs for the multiple types of lists used in the model. | 34 // Friendly typedefs for the multiple types of lists used in the model. |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 // A delegate, which must outlive this object. The update callbacks use the | 134 // A delegate, which must outlive this object. The update callbacks use the |
135 // delegate to deliver the updated data to the CookieTreeModel. | 135 // delegate to deliver the updated data to the CookieTreeModel. |
136 CookiesTreeModel* model_; | 136 CookiesTreeModel* model_; |
137 | 137 |
138 base::WeakPtrFactory<LocalDataContainer> weak_ptr_factory_; | 138 base::WeakPtrFactory<LocalDataContainer> weak_ptr_factory_; |
139 | 139 |
140 DISALLOW_COPY_AND_ASSIGN(LocalDataContainer); | 140 DISALLOW_COPY_AND_ASSIGN(LocalDataContainer); |
141 }; | 141 }; |
142 | 142 |
143 #endif // CHROME_BROWSER_BROWSING_DATA_LOCAL_DATA_CONTAINER_H_ | 143 #endif // CHROME_BROWSER_BROWSING_DATA_LOCAL_DATA_CONTAINER_H_ |
OLD | NEW |