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

Unified Diff: third_party/WebKit/Source/bindings/modules/v8/ScriptValueSerializerForModules.h

Issue 2297043002: Web expose FileSystemFileEntry, FileSystemDirectoryEntry and friends (Closed)
Patch Set: Rebased Created 4 years, 1 month 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.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);
};

Powered by Google App Engine
This is Rietveld 408576698