| Index: content/browser/in_process_webkit/indexed_db_dispatcher_host.cc
|
| diff --git a/content/browser/in_process_webkit/indexed_db_dispatcher_host.cc b/content/browser/in_process_webkit/indexed_db_dispatcher_host.cc
|
| index 65479112a6939be5ee6249f00ba17f778cf004dd..96abaa9e44cd971002fc21328f1b32a7dcc34f5b 100644
|
| --- a/content/browser/in_process_webkit/indexed_db_dispatcher_host.cc
|
| +++ b/content/browser/in_process_webkit/indexed_db_dispatcher_host.cc
|
| @@ -892,36 +892,6 @@ void IndexedDBDispatcherHost::CursorDispatcherHost::Send(
|
| parent_->Send(message);
|
| }
|
|
|
| -// TODO(jsbell): Remove this after WK92278 rolls.
|
| -void IndexedDBDispatcherHost::CursorDispatcherHost::OnKey(
|
| - int32 object_id, IndexedDBKey* key) {
|
| - WebIDBCursor* idb_cursor = parent_->GetOrTerminateProcess(&map_, object_id);
|
| - if (!idb_cursor)
|
| - return;
|
| -
|
| - *key = IndexedDBKey(idb_cursor->key());
|
| -}
|
| -
|
| -// TODO(jsbell): Remove this after WK92278 rolls.
|
| -void IndexedDBDispatcherHost::CursorDispatcherHost::OnPrimaryKey(
|
| - int32 object_id, IndexedDBKey* primary_key) {
|
| - WebIDBCursor* idb_cursor = parent_->GetOrTerminateProcess(&map_, object_id);
|
| - if (!idb_cursor)
|
| - return;
|
| -
|
| - *primary_key = IndexedDBKey(idb_cursor->primaryKey());
|
| -}
|
| -
|
| -// TODO(jsbell): Remove this after WK92278 rolls.
|
| -void IndexedDBDispatcherHost::CursorDispatcherHost::OnValue(
|
| - int32 object_id,
|
| - SerializedScriptValue* script_value) {
|
| - WebIDBCursor* idb_cursor = parent_->GetOrTerminateProcess(&map_, object_id);
|
| - if (!idb_cursor)
|
| - return;
|
| -
|
| - *script_value = SerializedScriptValue(idb_cursor->value());
|
| -}
|
|
|
| void IndexedDBDispatcherHost::CursorDispatcherHost::OnAdvance(
|
| int32 cursor_id,
|
|
|