Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(794)

Unified Diff: third_party/WebKit/Source/modules/indexeddb/IDBCursor.cpp

Issue 2814253002: IndexedDB: Fix mocks/comments following the great blink rename (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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());
« no previous file with comments | « third_party/WebKit/Source/modules/indexeddb/IDBCursor.h ('k') | third_party/WebKit/Source/modules/indexeddb/IDBFactory.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698