Index: content/browser/in_process_webkit/indexed_db_callbacks.cc |
diff --git a/content/browser/in_process_webkit/indexed_db_callbacks.cc b/content/browser/in_process_webkit/indexed_db_callbacks.cc |
index 58ac91dd70f32521470eda49d9ef1ee49a821223..291e2fbdb9dca42c07c2d106f3782b989179584c 100644 |
--- a/content/browser/in_process_webkit/indexed_db_callbacks.cc |
+++ b/content/browser/in_process_webkit/indexed_db_callbacks.cc |
@@ -53,20 +53,6 @@ void IndexedDBCallbacks<WebKit::WebIDBDatabase>::onUpgradeNeeded( |
old_version)); |
} |
-// TODO(jsbell): Remove this after WK92278 rolls. |
-void IndexedDBCallbacks<WebKit::WebIDBCursor>::onSuccess( |
- WebKit::WebIDBCursor* idb_object) { |
- int32 object_id = dispatcher_host()->Add(idb_object); |
- IndexedDBMsg_CallbacksSuccessIDBCursor_Params params; |
- params.thread_id = thread_id(); |
- params.response_id = response_id(); |
- params.cursor_id = object_id; |
- params.key = IndexedDBKey(idb_object->key()); |
- params.primary_key = IndexedDBKey(idb_object->primaryKey()); |
- params.serialized_value = SerializedScriptValue(idb_object->value()); |
- dispatcher_host()->Send(new IndexedDBMsg_CallbacksSuccessIDBCursor(params)); |
-} |
- |
void IndexedDBCallbacks<WebKit::WebIDBCursor>::onSuccess( |
WebKit::WebIDBCursor* idb_object, |
const WebKit::WebIDBKey& key, |
@@ -90,26 +76,6 @@ void IndexedDBCallbacks<WebKit::WebIDBCursor>::onSuccess( |
thread_id(), response_id(), SerializedScriptValue(value))); |
} |
-// TODO(jsbell): Remove this after WK92278 rolls. |
-void IndexedDBCallbacks<WebKit::WebIDBCursor>::onSuccessWithContinuation() { |
- DCHECK(cursor_id_ != -1); |
- WebKit::WebIDBCursor* idb_cursor = dispatcher_host()->GetCursorFromId( |
- cursor_id_); |
- |
- DCHECK(idb_cursor); |
- if (!idb_cursor) |
- return; |
- IndexedDBMsg_CallbacksSuccessCursorContinue_Params params; |
- params.thread_id = thread_id(); |
- params.response_id = response_id(); |
- params.cursor_id = cursor_id_; |
- params.key = IndexedDBKey(idb_cursor->key()); |
- params.primary_key = IndexedDBKey(idb_cursor->primaryKey()); |
- params.serialized_value = SerializedScriptValue(idb_cursor->value()); |
- dispatcher_host()->Send( |
- new IndexedDBMsg_CallbacksSuccessCursorContinue(params)); |
-} |
- |
void IndexedDBCallbacks<WebKit::WebIDBCursor>::onSuccess( |
const WebKit::WebIDBKey& key, |
const WebKit::WebIDBKey& primaryKey, |