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

Unified Diff: third_party/WebKit/Source/modules/indexeddb/IDBKeyPath.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/IDBKeyPath.cpp
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBKeyPath.cpp b/third_party/WebKit/Source/modules/indexeddb/IDBKeyPath.cpp
index adb501cba5a058f59d87466ca392932eda8c36bb..9b62882e2cb65fcf84b1317083c5d5fea0cc5f59 100644
--- a/third_party/WebKit/Source/modules/indexeddb/IDBKeyPath.cpp
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBKeyPath.cpp
@@ -88,7 +88,7 @@ void IDBParseKeyPath(const String& key_path,
return;
}
- key_path.Split('.', /*allowEmptyEntries*/ true, elements);
+ key_path.Split('.', /*allow_empty_entries=*/true, elements);
for (size_t i = 0; i < elements.size(); ++i) {
if (!IsIdentifier(elements[i])) {
error = kIDBKeyPathParseErrorIdentifier;
« no previous file with comments | « third_party/WebKit/Source/modules/indexeddb/IDBIndex.cpp ('k') | third_party/WebKit/Source/modules/indexeddb/IDBObjectStore.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698