summaryrefslogtreecommitdiffstats
path: root/chrome/browser
diff options
context:
space:
mode:
authorandreip@chromium.org <andreip@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-09-23 15:56:13 +0000
committerandreip@chromium.org <andreip@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-09-23 15:56:13 +0000
commitbe904a6d36a45788697cfd72a08415ef99d3bd80 (patch)
tree68180916f7fb9ae0f1992ff1a78a02472054f8f0 /chrome/browser
parent8af6f3346e40353c78ed6b787aa128f934432689 (diff)
downloadchromium_src-be904a6d36a45788697cfd72a08415ef99d3bd80.zip
chromium_src-be904a6d36a45788697cfd72a08415ef99d3bd80.tar.gz
chromium_src-be904a6d36a45788697cfd72a08415ef99d3bd80.tar.bz2
Remove call to WebIDBFactory::abortPendingTransactions ahead of WK roll to r68143.
BUG= TEST= Review URL: http://codereview.chromium.org/3470009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@60294 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser')
-rw-r--r--chrome/browser/in_process_webkit/indexed_db_dispatcher_host.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/chrome/browser/in_process_webkit/indexed_db_dispatcher_host.cc b/chrome/browser/in_process_webkit/indexed_db_dispatcher_host.cc
index 91b0325..595a8cb 100644
--- a/chrome/browser/in_process_webkit/indexed_db_dispatcher_host.cc
+++ b/chrome/browser/in_process_webkit/indexed_db_dispatcher_host.cc
@@ -273,12 +273,10 @@ void IndexedDBDispatcherHost::OnIDBFactoryOpen(
webkit_glue::FilePathToWebString(indexed_db_path));
}
+// TODO(andreip): remove this method entirely once WK rolls to r68143.
void IndexedDBDispatcherHost::OnIDBFactoryAbortPendingTransactions(
const std::vector<int32>& ids) {
DCHECK(ChromeThread::CurrentlyOn(ChromeThread::WEBKIT));
-
- WebVector<int32> pendingIDs = ids;
- Context()->GetIDBFactory()->abortPendingTransactions(pendingIDs);
}
//////////////////////////////////////////////////////////////////////