| 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..c16e5e6a0e62bbc0e5d1ace6fd32855532ff99f1 100644
 | 
| --- a/content/public/browser/storage_partition.h
 | 
| +++ b/content/public/browser/storage_partition.h
 | 
| @@ -40,8 +40,9 @@ namespace content {
 | 
|  
 | 
|  class AppCacheService;
 | 
|  class BrowserContext;
 | 
| -class IndexedDBContext;
 | 
|  class DOMStorageContext;
 | 
| +class GeofencingManager;
 | 
| +class IndexedDBContext;
 | 
|  class ServiceWorkerContext;
 | 
|  
 | 
|  // Defines what persistent state a child process can access.
 | 
| @@ -62,6 +63,7 @@ class CONTENT_EXPORT StoragePartition {
 | 
|    virtual DOMStorageContext* GetDOMStorageContext() = 0;
 | 
|    virtual IndexedDBContext* GetIndexedDBContext() = 0;
 | 
|    virtual ServiceWorkerContext* GetServiceWorkerContext() = 0;
 | 
| +  virtual GeofencingManager* GetGeofencingManager() = 0;
 | 
|  
 | 
|    static const uint32 REMOVE_DATA_MASK_APPCACHE        = 1 << 0;
 | 
|    static const uint32 REMOVE_DATA_MASK_COOKIES         = 1 << 1;
 | 
| 
 |