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

Unified Diff: third_party/WebKit/Source/bindings/modules/v8/ScriptValueSerializerForModules.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/bindings/modules/v8/ScriptValueSerializerForModules.cpp
diff --git a/third_party/WebKit/Source/bindings/modules/v8/ScriptValueSerializerForModules.cpp b/third_party/WebKit/Source/bindings/modules/v8/ScriptValueSerializerForModules.cpp
index 8796a385f599404803f8cbf9079a836a144a9111..2a66441b1949136140419d76e966e2ecce2bf2ad 100644
--- a/third_party/WebKit/Source/bindings/modules/v8/ScriptValueSerializerForModules.cpp
+++ b/third_party/WebKit/Source/bindings/modules/v8/ScriptValueSerializerForModules.cpp
@@ -336,7 +336,7 @@ bool SerializedScriptValueReaderForModules::readDOMFileSystem(
DOMFileSystem* fs = DOMFileSystem::create(
getScriptState()->getExecutionContext(), name,
static_cast<FileSystemType>(type), KURL(ParsedURLString, url));
- *value = toV8(fs, getScriptState()->context()->Global(), isolate());
+ *value = ToV8(fs, getScriptState()->context()->Global(), isolate());
return !value->IsEmpty();
}
@@ -393,7 +393,7 @@ bool SerializedScriptValueReaderForModules::readCryptoKey(
return false;
}
- *value = toV8(CryptoKey::create(key), getScriptState()->context()->Global(),
+ *value = ToV8(CryptoKey::create(key), getScriptState()->context()->Global(),
isolate());
return !value->IsEmpty();
}
@@ -417,7 +417,7 @@ bool SerializedScriptValueReaderForModules::readRTCCertificate(
RTCCertificate* jsCertificate = new RTCCertificate(std::move(certificate));
*value =
- toV8(jsCertificate, getScriptState()->context()->Global(), isolate());
+ ToV8(jsCertificate, getScriptState()->context()->Global(), isolate());
return !value->IsEmpty();
}

Powered by Google App Engine
This is Rietveld 408576698