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

Unified Diff: Source/bindings/modules/v8/SerializedScriptValueForModulesFactory.h

Issue 1116843002: v8::Isolate* should be the first parameter (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed Mac compilation error for v8::Isolate* should be the first parameter patch Created 5 years, 7 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: Source/bindings/modules/v8/SerializedScriptValueForModulesFactory.h
diff --git a/Source/bindings/modules/v8/SerializedScriptValueForModulesFactory.h b/Source/bindings/modules/v8/SerializedScriptValueForModulesFactory.h
index 239f2c8a5fcb2da97bfaecb9e9a08bdabfc86607..55e6629708ae503a1a331fcc8695eb28bf22eb0c 100644
--- a/Source/bindings/modules/v8/SerializedScriptValueForModulesFactory.h
+++ b/Source/bindings/modules/v8/SerializedScriptValueForModulesFactory.h
@@ -15,8 +15,8 @@ class SerializedScriptValueForModulesFactory final : public SerializedScriptValu
public:
SerializedScriptValueForModulesFactory() : SerializedScriptValueFactory() { }
- virtual PassRefPtr<SerializedScriptValue> create(v8::Local<v8::Value>, MessagePortArray*, ArrayBufferArray*, WebBlobInfoArray*, ExceptionState&, v8::Isolate*) override;
- virtual PassRefPtr<SerializedScriptValue> create(const String&, v8::Isolate*) override;
+ virtual PassRefPtr<SerializedScriptValue> create(v8::Isolate*, v8::Local<v8::Value>, MessagePortArray*, ArrayBufferArray*, WebBlobInfoArray*, ExceptionState&) override;
+ virtual PassRefPtr<SerializedScriptValue> create(v8::Isolate*, const String&) override;
protected:
virtual ScriptValueSerializer::Status doSerialize(v8::Local<v8::Value>, SerializedScriptValueWriter&, MessagePortArray*, ArrayBufferArray*, WebBlobInfoArray*, BlobDataHandleMap&, v8::TryCatch&, String& errorMessage, v8::Isolate*) override;

Powered by Google App Engine
This is Rietveld 408576698