Index: third_party/WebKit/Source/modules/indexeddb/IDBCursor.cpp |
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBCursor.cpp b/third_party/WebKit/Source/modules/indexeddb/IDBCursor.cpp |
index 97911604b2e7a0b393fd3447f92a197762c96ceb..15d5515f9acf3897be020061f1617ade376ac8b1 100644 |
--- a/third_party/WebKit/Source/modules/indexeddb/IDBCursor.cpp |
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBCursor.cpp |
@@ -219,7 +219,7 @@ void IDBCursor::continueFunction(ScriptState* script_state, |
IDBDatabase::kNotValidKeyErrorMessage); |
return; |
} |
- continueFunction(key, nullptr, exception_state); |
+ Continue(key, nullptr, exception_state); |
} |
void IDBCursor::continuePrimaryKey(ScriptState* script_state, |
@@ -286,12 +286,12 @@ void IDBCursor::continuePrimaryKey(ScriptState* script_state, |
return; |
} |
- continueFunction(key, primary_key, exception_state); |
+ Continue(key, primary_key, exception_state); |
} |
-void IDBCursor::continueFunction(IDBKey* key, |
- IDBKey* primary_key, |
- ExceptionState& exception_state) { |
+void IDBCursor::Continue(IDBKey* key, |
+ IDBKey* primary_key, |
+ ExceptionState& exception_state) { |
DCHECK(transaction_->IsActive()); |
DCHECK(got_value_); |
DCHECK(!IsDeleted()); |