| 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;
|
|
|