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

Unified Diff: content/public/browser/storage_partition.h

Issue 393133002: Migrate HostZoomMap to live in StoragePartition. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase to 291677. Created 6 years, 4 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: content/public/browser/storage_partition.h
diff --git a/content/public/browser/storage_partition.h b/content/public/browser/storage_partition.h
index f4e558f6ef647047058e57afc16da5081bf833f4..ce9b42861d2433930a8d8df4bc41d352f088e54e 100644
--- a/content/public/browser/storage_partition.h
+++ b/content/public/browser/storage_partition.h
@@ -14,6 +14,7 @@
#include "content/common/content_export.h"
class GURL;
+class PrefService;
namespace base {
class Time;
@@ -40,6 +41,8 @@ namespace content {
class AppCacheService;
class BrowserContext;
+class HostZoomLevelContext;
+class HostZoomMap;
class IndexedDBContext;
class DOMStorageContext;
class ServiceWorkerContext;
@@ -62,6 +65,9 @@ class CONTENT_EXPORT StoragePartition {
virtual DOMStorageContext* GetDOMStorageContext() = 0;
virtual IndexedDBContext* GetIndexedDBContext() = 0;
virtual ServiceWorkerContext* GetServiceWorkerContext() = 0;
+ virtual HostZoomMap* GetHostZoomMap() = 0;
+ virtual HostZoomLevelContext* GetHostZoomLevelContext() = 0;
+ virtual PrefService* GetZoomLevelPrefs() = 0;
static const uint32 REMOVE_DATA_MASK_APPCACHE = 1 << 0;
static const uint32 REMOVE_DATA_MASK_COOKIES = 1 << 1;

Powered by Google App Engine
This is Rietveld 408576698