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

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: fix 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..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_;
}

Powered by Google App Engine
This is Rietveld 408576698