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

Unified Diff: content/browser/indexed_db/indexed_db_context_impl.h

Issue 15564008: Migrate the IndexedDB backend from Blink to Chromium (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update to ToT again Created 7 years, 7 months 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
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 48c9e0785eda453df9d30cf66df3c14249969adf..846b2b183483007c4794502309cd160d0f56d327 100644
--- a/content/browser/indexed_db/indexed_db_context_impl.h
+++ b/content/browser/indexed_db/indexed_db_context_impl.h
@@ -66,8 +66,8 @@ class CONTENT_EXPORT IndexedDBContextImpl
OVERRIDE;
// Methods called by IndexedDBDispatcherHost for quota support.
- void ConnectionOpened(const GURL& origin_url, WebKit::WebIDBDatabase*);
- void ConnectionClosed(const GURL& origin_url, WebKit::WebIDBDatabase*);
+ void ConnectionOpened(const GURL& origin_url, WebKit::WebIDBDatabase* db);
+ void ConnectionClosed(const GURL& origin_url, WebKit::WebIDBDatabase* db);
void TransactionComplete(const GURL& origin_url);
bool WouldBeOverQuota(const GURL& origin_url, int64 additional_bytes);
bool IsOverQuota(const GURL& origin_url);

Powered by Google App Engine
This is Rietveld 408576698