summaryrefslogtreecommitdiffstats
path: root/chrome/renderer/indexed_db_dispatcher.cc
diff options
context:
space:
mode:
authorjorlow@chromium.org <jorlow@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-03 15:22:50 +0000
committerjorlow@chromium.org <jorlow@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-03 15:22:50 +0000
commit6454c0b420f2ed03cf0acf51404fb945a870afd9 (patch)
tree995d70321f98729c613520833e0842adc2cc6975 /chrome/renderer/indexed_db_dispatcher.cc
parent5a4a173a23aa8e9853908272423003028b671f24 (diff)
downloadchromium_src-6454c0b420f2ed03cf0acf51404fb945a870afd9.zip
chromium_src-6454c0b420f2ed03cf0acf51404fb945a870afd9.tar.gz
chromium_src-6454c0b420f2ed03cf0acf51404fb945a870afd9.tar.bz2
Get rid of the last couple references to "remove" functions and description within Chromium.
TEST=none BUG=none Review URL: http://codereview.chromium.org/5369005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@68171 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer/indexed_db_dispatcher.cc')
-rw-r--r--chrome/renderer/indexed_db_dispatcher.cc10
1 files changed, 4 insertions, 6 deletions
diff --git a/chrome/renderer/indexed_db_dispatcher.cc b/chrome/renderer/indexed_db_dispatcher.cc
index 2f509ff..83d3d16 100644
--- a/chrome/renderer/indexed_db_dispatcher.cc
+++ b/chrome/renderer/indexed_db_dispatcher.cc
@@ -97,7 +97,7 @@ void IndexedDBDispatcher::RequestIDBCursorContinue(
pending_callbacks_.Remove(response_id);
}
-void IndexedDBDispatcher::RequestIDBCursorRemove(
+void IndexedDBDispatcher::RequestIDBCursorDelete(
WebIDBCallbacks* callbacks_ptr,
int32 idb_cursor_id,
WebExceptionCode* ec) {
@@ -105,14 +105,13 @@ void IndexedDBDispatcher::RequestIDBCursorRemove(
int32 response_id = pending_callbacks_.Add(callbacks.release());
RenderThread::current()->Send(
- new ViewHostMsg_IDBCursorRemove(idb_cursor_id, response_id, ec));
+ new ViewHostMsg_IDBCursorDelete(idb_cursor_id, response_id, ec));
if (*ec)
pending_callbacks_.Remove(response_id);
}
void IndexedDBDispatcher::RequestIDBFactoryOpen(
const string16& name,
- const string16& description,
WebIDBCallbacks* callbacks_ptr,
const string16& origin,
WebFrame* web_frame,
@@ -130,7 +129,6 @@ void IndexedDBDispatcher::RequestIDBFactoryOpen(
params.response_id_ = pending_callbacks_.Add(callbacks.release());
params.origin_ = origin;
params.name_ = name;
- params.description_ = description;
params.maximum_size_ = maximum_size;
RenderThread::current()->Send(new ViewHostMsg_IDBFactoryOpen(params));
}
@@ -268,7 +266,7 @@ void IndexedDBDispatcher::RequestIDBObjectStorePut(
pending_callbacks_.Remove(params.response_id_);
}
-void IndexedDBDispatcher::RequestIDBObjectStoreRemove(
+void IndexedDBDispatcher::RequestIDBObjectStoreDelete(
const IndexedDBKey& key,
WebIDBCallbacks* callbacks_ptr,
int32 idb_object_store_id,
@@ -278,7 +276,7 @@ void IndexedDBDispatcher::RequestIDBObjectStoreRemove(
int32 response_id = pending_callbacks_.Add(callbacks.release());
RenderThread::current()->Send(
- new ViewHostMsg_IDBObjectStoreRemove(
+ new ViewHostMsg_IDBObjectStoreDelete(
idb_object_store_id, response_id,
key, TransactionId(transaction), ec));
if (*ec)