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