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; |