Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3793)

Unified Diff: chrome/browser/content_settings/local_shared_objects_container.h

Issue 10790150: Show Flash LSOs for Pepper Flash in cookie dialog. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_;
}

Powered by Google App Engine
This is Rietveld 408576698