| Index: content/browser/indexed_db/indexed_db_context_impl.h
|
| diff --git a/content/browser/indexed_db/indexed_db_context_impl.h b/content/browser/indexed_db/indexed_db_context_impl.h
|
| index 52aa57b052c1ff9fea447a8f742faa132d78058c..e08a234e6666348a0824206eccb2fda78e09c749 100644
|
| --- a/content/browser/indexed_db/indexed_db_context_impl.h
|
| +++ b/content/browser/indexed_db/indexed_db_context_impl.h
|
| @@ -64,8 +64,11 @@ class CONTENT_EXPORT IndexedDBContextImpl
|
| virtual int64 GetOriginDiskUsage(const GURL& origin_url) OVERRIDE;
|
| virtual base::Time GetOriginLastModified(const GURL& origin_url) OVERRIDE;
|
| virtual void DeleteForOrigin(const GURL& origin_url) OVERRIDE;
|
| + virtual void ForceClose(const GURL& origin_url) OVERRIDE;
|
| + virtual base::FilePath GetFilePath(const GURL& origin_url) OVERRIDE;
|
| virtual base::FilePath GetFilePathForTesting(
|
| const string16& origin_id) const OVERRIDE;
|
| + virtual bool HasOrigin(const GURL& origin_url) OVERRIDE;
|
|
|
| // Methods called by IndexedDBDispatcherHost for quota support.
|
| void ConnectionOpened(const GURL& origin_url, WebKit::WebIDBDatabase*);
|
| @@ -112,10 +115,6 @@ class CONTENT_EXPORT IndexedDBContextImpl
|
| void RemoveFromOriginSet(const GURL& origin_url) {
|
| GetOriginSet()->erase(origin_url);
|
| }
|
| - bool IsInOriginSet(const GURL& origin_url) {
|
| - std::set<GURL>* set = GetOriginSet();
|
| - return set->find(origin_url) != set->end();
|
| - }
|
|
|
| // Only for testing.
|
| void ResetCaches();
|
|
|