Chromium Code Reviews| Index: content/public/browser/indexed_db_context.h |
| diff --git a/content/public/browser/indexed_db_context.h b/content/public/browser/indexed_db_context.h |
| index 1d11a9a6cb1915940b7f36817447ac0ef474e5e0..27c254caf7a48325272c3b3492b1eb34934f58fc 100644 |
| --- a/content/public/browser/indexed_db_context.h |
| +++ b/content/public/browser/indexed_db_context.h |
| @@ -28,10 +28,8 @@ class IndexedDBContext : public base::RefCountedThreadSafe<IndexedDBContext> { |
| virtual base::TaskRunner* TaskRunner() const = 0; |
| // Methods used in response to QuotaManager requests. |
| - virtual std::vector<GURL> GetAllOrigins() = 0; |
|
jsbell
2013/11/14 23:34:12
Cool - these are called via impl now from the IDB
|
| virtual std::vector<IndexedDBInfo> GetAllOriginsInfo() = 0; |
| virtual int64 GetOriginDiskUsage(const GURL& origin_url) = 0; |
| - virtual base::Time GetOriginLastModified(const GURL& origin_url) = 0; |
| // Deletes all indexed db files for the given origin. |
| virtual void DeleteForOrigin(const GURL& origin_url) = 0; |