Chromium Code Reviews| Index: chrome/browser/content_settings/local_shared_objects_container.h |
| diff --git a/chrome/browser/content_settings/local_shared_objects_container.h b/chrome/browser/content_settings/local_shared_objects_container.h |
| index 78173d36bcffcc17a4b6954907bd5732811637b5..ccc5d38fe10be8d99940ed21d687411e612e7165 100644 |
| --- a/chrome/browser/content_settings/local_shared_objects_container.h |
| +++ b/chrome/browser/content_settings/local_shared_objects_container.h |
| @@ -6,6 +6,7 @@ |
| #define CHROME_BROWSER_CONTENT_SETTINGS_LOCAL_SHARED_OBJECTS_CONTAINER_H_ |
| #include "base/memory/ref_counted.h" |
| +#include "base/memory/scoped_ptr.h" |
| class CannedBrowsingDataAppCacheHelper; |
| class CannedBrowsingDataCookieHelper; |
| @@ -14,6 +15,7 @@ class CannedBrowsingDataFileSystemHelper; |
| class CannedBrowsingDataIndexedDBHelper; |
| class CannedBrowsingDataLocalStorageHelper; |
| class CannedBrowsingDataServerBoundCertHelper; |
| +class CookiesTreeModel; |
| class GURL; |
| class Profile; |
| @@ -31,6 +33,9 @@ class LocalSharedObjectsContainer { |
| // Returns the number of objects for the given |origin|. |
| size_t GetObjectCountForDomain(const GURL& url) const; |
| + // Creates a new CookiesTreeModel for all objects in the container. |
|
markusheintz_
2012/07/30 14:02:15
Could you mention that the objects are copied? Tha
Bernhard Bauer
2012/07/31 00:20:03
Done.
|
| + scoped_ptr<CookiesTreeModel> CreateCookiesTreeModel() const; |
| + |
| CannedBrowsingDataAppCacheHelper* appcaches() const { |
| return appcaches_; |
| } |