summaryrefslogtreecommitdiffstats
path: root/chrome/common
diff options
context:
space:
mode:
authordgrogan@chromium.org <dgrogan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-12 01:11:43 +0000
committerdgrogan@chromium.org <dgrogan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-12 01:11:43 +0000
commitdcafaefb3097412bacafb3c248149f427e6b0fcc (patch)
treedd021843865b6ffe4bfb113d6343891c913e1ba4 /chrome/common
parentbadcca35cb7b4ec55b30c50f36ed4ee6496221ae (diff)
downloadchromium_src-dcafaefb3097412bacafb3c248149f427e6b0fcc.zip
chromium_src-dcafaefb3097412bacafb3c248149f427e6b0fcc.tar.gz
chromium_src-dcafaefb3097412bacafb3c248149f427e6b0fcc.tar.bz2
indexeddb: make setVersion fire blocked event if other connections are open
BUG=64049 TEST= Review URL: http://codereview.chromium.org/6513002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74711 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r--chrome/common/indexed_db_messages.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/chrome/common/indexed_db_messages.h b/chrome/common/indexed_db_messages.h
index 6852cfb..002a9c1 100644
--- a/chrome/common/indexed_db_messages.h
+++ b/chrome/common/indexed_db_messages.h
@@ -250,6 +250,8 @@ IPC_MESSAGE_CONTROL3(IndexedDBMsg_CallbacksError,
int32 /* response_id */,
int /* code */,
string16 /* message */)
+IPC_MESSAGE_CONTROL1(IndexedDBMsg_CallbacksBlocked,
+ int32 /* response_id */)
// IDBTransactionCallback message handlers.
IPC_MESSAGE_CONTROL1(IndexedDBMsg_TransactionCallbacksAbort,
@@ -351,6 +353,10 @@ IPC_SYNC_MESSAGE_CONTROL4_2(IndexedDBHostMsg_DatabaseTransaction,
WebKit::WebExceptionCode /* ec */)
// WebIDBDatabase::close() message.
+IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_DatabaseOpen,
+ int32 /* idb_database_id */)
+
+// WebIDBDatabase::close() message.
IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_DatabaseClose,
int32 /* idb_database_id */)