| 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..0bdd9a9ccdce57b58c36b8c2446c5a048b31cdb6 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,10 @@ 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,
|
| + // copying each of them.
|
| + scoped_ptr<CookiesTreeModel> CreateCookiesTreeModel() const;
|
| +
|
| CannedBrowsingDataAppCacheHelper* appcaches() const {
|
| return appcaches_;
|
| }
|
|
|