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

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: Address comments; patch for landing. Created 6 years, 1 month 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
« no previous file with comments | « content/public/browser/host_zoom_map.h ('k') | content/public/browser/zoom_level_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/storage_partition.h
diff --git a/content/public/browser/storage_partition.h b/content/public/browser/storage_partition.h
index c16e5e6a0e62bbc0e5d1ace6fd32855532ff99f1..8335c05f46fea17f245e00e02798df45f887f855 100644
--- a/content/public/browser/storage_partition.h
+++ b/content/public/browser/storage_partition.h
@@ -40,10 +40,13 @@ namespace content {
class AppCacheService;
class BrowserContext;
+class HostZoomLevelContext;
+class HostZoomMap;
class DOMStorageContext;
class GeofencingManager;
class IndexedDBContext;
class ServiceWorkerContext;
+class ZoomLevelDelegate;
// Defines what persistent state a child process can access.
//
@@ -64,6 +67,9 @@ class CONTENT_EXPORT StoragePartition {
virtual IndexedDBContext* GetIndexedDBContext() = 0;
virtual ServiceWorkerContext* GetServiceWorkerContext() = 0;
virtual GeofencingManager* GetGeofencingManager() = 0;
+ virtual HostZoomMap* GetHostZoomMap() = 0;
+ virtual HostZoomLevelContext* GetHostZoomLevelContext() = 0;
+ virtual ZoomLevelDelegate* GetZoomLevelDelegate() = 0;
static const uint32 REMOVE_DATA_MASK_APPCACHE = 1 << 0;
static const uint32 REMOVE_DATA_MASK_COOKIES = 1 << 1;
« no previous file with comments | « content/public/browser/host_zoom_map.h ('k') | content/public/browser/zoom_level_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698