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

Unified Diff: Source/web/WebSerializedScriptValue.cpp

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
« no previous file with comments | « Source/modules/notifications/ServiceWorkerRegistrationNotifications.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebSerializedScriptValue.cpp
diff --git a/Source/web/WebSerializedScriptValue.cpp b/Source/web/WebSerializedScriptValue.cpp
index 685ecefb342474059d6889e7fbc3826c83378492..db366e06c15973b69801f1e34eaf62a0af31c1aa 100644
--- a/Source/web/WebSerializedScriptValue.cpp
+++ b/Source/web/WebSerializedScriptValue.cpp
@@ -46,7 +46,7 @@ WebSerializedScriptValue WebSerializedScriptValue::fromString(const WebString& s
WebSerializedScriptValue WebSerializedScriptValue::serialize(v8::Local<v8::Value> value)
{
TrackExceptionState exceptionState;
- WebSerializedScriptValue serializedValue = SerializedScriptValueFactory::instance().create(value, 0, 0, exceptionState, v8::Isolate::GetCurrent());
+ WebSerializedScriptValue serializedValue = SerializedScriptValueFactory::instance().create(v8::Isolate::GetCurrent(), value, 0, 0, exceptionState);
if (exceptionState.hadException())
return createInvalid();
return serializedValue;
« no previous file with comments | « Source/modules/notifications/ServiceWorkerRegistrationNotifications.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698