| 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();
|
| }
|
|
|
|
|