diff options
author | jsbell@chromium.org <jsbell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-06 00:42:37 +0000 |
---|---|---|
committer | jsbell@chromium.org <jsbell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-06 00:42:37 +0000 |
commit | 2f014b0bd715661c6d3b35289cf668f02402c7d8 (patch) | |
tree | fa6d984876a6873cc75b570c466b01cc1b767434 /content/common/indexed_db/indexed_db_dispatcher.h | |
parent | d73f0fd7354378a9e09a5be76e19241c1c385f33 (diff) | |
download | chromium_src-2f014b0bd715661c6d3b35289cf668f02402c7d8.zip chromium_src-2f014b0bd715661c6d3b35289cf668f02402c7d8.tar.gz chromium_src-2f014b0bd715661c6d3b35289cf668f02402c7d8.tar.bz2 |
IndexedDB: Close open databases when user requests browsing data deletion
BUG=64050
TEST=
Review URL: https://chromiumcodereview.appspot.com/10695158
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@155075 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common/indexed_db/indexed_db_dispatcher.h')
-rw-r--r-- | content/common/indexed_db/indexed_db_dispatcher.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/content/common/indexed_db/indexed_db_dispatcher.h b/content/common/indexed_db/indexed_db_dispatcher.h index 7e1a450..bb154f2 100644 --- a/content/common/indexed_db/indexed_db_dispatcher.h +++ b/content/common/indexed_db/indexed_db_dispatcher.h @@ -261,6 +261,7 @@ class CONTENT_EXPORT IndexedDBDispatcher int64 old_version); void OnAbort(int32 thread_id, int32 transaction_id); void OnComplete(int32 thread_id, int32 transaction_id); + void OnForcedClose(int32 thread_id, int32 database_id); void OnVersionChange(int32 thread_id, int32 database_id, const string16& newVersion); |