Index: content/browser/indexed_db/indexed_db_database.h |
diff --git a/content/browser/indexed_db/indexed_db_database.h b/content/browser/indexed_db/indexed_db_database.h |
index bc03564f2b95ae37468c28c1e1fd7ed8786b0613..36300eefeb257e7d2ddfc422227cf128182021b3 100644 |
--- a/content/browser/indexed_db/indexed_db_database.h |
+++ b/content/browser/indexed_db/indexed_db_database.h |
@@ -68,6 +68,12 @@ class CONTENT_EXPORT IndexedDBDatabase |
scoped_refptr<IndexedDBDatabaseCallbacksWrapper> database_callbacks, |
int64 transaction_id, |
int64 version); |
+ void OpenConnection( |
+ scoped_refptr<IndexedDBCallbacksWrapper> callbacks, |
+ scoped_refptr<IndexedDBDatabaseCallbacksWrapper> database_callbacks, |
+ int64 transaction_id, |
+ int64 version, |
+ WebKit::WebIDBCallbacks::DataLoss data_loss); |
void DeleteDatabase(scoped_refptr<IndexedDBCallbacksWrapper> callbacks); |
const IndexedDBDatabaseMetadata& metadata() const { return metadata_; } |
@@ -164,12 +170,19 @@ class CONTENT_EXPORT IndexedDBDatabase |
scoped_refptr<IndexedDBCallbacksWrapper> callbacks, |
scoped_refptr<IndexedDBDatabaseCallbacksWrapper> database_callbacks, |
int64 transaction_id, |
- int64 requested_version); |
+ int64 requested_version, |
+ WebKit::WebIDBCallbacks::DataLoss data_loss); |
void RunVersionChangeTransactionFinal( |
scoped_refptr<IndexedDBCallbacksWrapper> callbacks, |
scoped_refptr<IndexedDBDatabaseCallbacksWrapper> database_callbacks, |
int64 transaction_id, |
int64 requested_version); |
+ void RunVersionChangeTransactionFinal( |
+ scoped_refptr<IndexedDBCallbacksWrapper> callbacks, |
+ scoped_refptr<IndexedDBDatabaseCallbacksWrapper> database_callbacks, |
+ int64 transaction_id, |
+ int64 requested_version, |
+ WebKit::WebIDBCallbacks::DataLoss data_loss); |
size_t ConnectionCount() const; |
void ProcessPendingCalls(); |