| Index: third_party/WebKit/Source/bindings/modules/v8/ScriptValueSerializerForModules.h
|
| diff --git a/third_party/WebKit/Source/bindings/modules/v8/ScriptValueSerializerForModules.h b/third_party/WebKit/Source/bindings/modules/v8/ScriptValueSerializerForModules.h
|
| index 285552e5f44ed87a65c8fa49083fb0372ab2b2da..fea8d9855314661392bfe7d44bce10f0ba27dbbb 100644
|
| --- a/third_party/WebKit/Source/bindings/modules/v8/ScriptValueSerializerForModules.h
|
| +++ b/third_party/WebKit/Source/bindings/modules/v8/ScriptValueSerializerForModules.h
|
| @@ -22,7 +22,7 @@ class SerializedScriptValueWriterForModules final
|
| public:
|
| SerializedScriptValueWriterForModules() : SerializedScriptValueWriter() {}
|
|
|
| - void writeDOMFileSystem(int type, const String& name, const String& url);
|
| + void writeFileSystem(int type, const String& name, const String& url);
|
| bool writeCryptoKey(const WebCryptoKey&);
|
| void writeRTCCertificate(const RTCCertificate&);
|
|
|
| @@ -64,7 +64,7 @@ class SerializedScriptValueReaderForModules final
|
| bool read(v8::Local<v8::Value>*, ScriptValueDeserializer&) override;
|
|
|
| private:
|
| - bool readDOMFileSystem(v8::Local<v8::Value>*);
|
| + bool readFileSystem(v8::Local<v8::Value>*);
|
| bool readCryptoKey(v8::Local<v8::Value>*);
|
| bool readRTCCertificate(v8::Local<v8::Value>*);
|
| bool doReadHmacKey(WebCryptoKeyAlgorithm&, WebCryptoKeyType&);
|
| @@ -96,7 +96,7 @@ class ScriptValueSerializerForModules final : public ScriptValueSerializer {
|
| private:
|
| StateBase* doSerializeObject(v8::Local<v8::Object>, StateBase* next) override;
|
|
|
| - StateBase* writeDOMFileSystem(v8::Local<v8::Value>, StateBase* next);
|
| + StateBase* writeFileSystem(v8::Local<v8::Value>, StateBase* next);
|
| bool writeCryptoKey(v8::Local<v8::Value>);
|
| StateBase* writeRTCCertificate(v8::Local<v8::Value>, StateBase* next);
|
| };
|
|
|