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

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

Issue 2595543003: Rename toV8(...) function in Blink to ToV8(...). (Closed)
Patch Set: Rebasing... Created 3 years, 11 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/IDBObserverChanges.cpp
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.cpp b/third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.cpp
index 64fe5090fc35c2ebc70a266ccf9596c1c6f63ee9..f3bde6ff7b7cb42783f236a299d0c5c2f8097dcd 100644
--- a/third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.cpp
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBObserverChanges.cpp
@@ -22,7 +22,7 @@ ScriptValue IDBObserverChanges::records(ScriptState* scriptState) {
for (const auto& it : m_records) {
v8::Local<v8::String> key =
v8String(isolate, m_database->getObjectStoreName(it.key));
- v8::Local<v8::Value> value = toV8(it.value, context->Global(), isolate);
+ v8::Local<v8::Value> value = ToV8(it.value, context->Global(), isolate);
map->Set(context, key, value).ToLocalChecked();
}
return ScriptValue::from(scriptState, map);
« no previous file with comments | « third_party/WebKit/Source/modules/indexeddb/IDBCursor.cpp ('k') | third_party/WebKit/Source/modules/nfc/NFC.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698