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

Unified Diff: third_party/WebKit/Source/bindings/tests/results/core/V8TestObject.cpp

Issue 2509713002: binding: Makes Dictionary throw an exception (constructor). (Closed)
Patch Set: 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/tests/results/core/V8TestObject.cpp
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestObject.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8TestObject.cpp
index 19a6da70d5fc129b5d62dcafd70f882e05f51627..ec2eaf093754d08768cb8489a02bdcab3235696b 100644
--- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestObject.cpp
+++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestObject.cpp
@@ -7171,7 +7171,7 @@ static void promiseMethodMethod(const v8::FunctionCallbackInfo<v8::Value>& info)
return;
}
- arg2 = Dictionary(info[1], info.GetIsolate(), exceptionState);
+ arg2 = Dictionary(info.GetIsolate(), info[1], exceptionState);
if (exceptionState.hadException())
return;
@@ -7207,7 +7207,7 @@ static void promiseMethodWithoutExceptionStateMethod(const v8::FunctionCallbackI
return;
}
- arg1 = Dictionary(info[0], info.GetIsolate(), exceptionState);
+ arg1 = Dictionary(info.GetIsolate(), info[0], exceptionState);
if (exceptionState.hadException())
return;
@@ -7254,7 +7254,7 @@ static void voidMethodDictionaryArgMethod(const v8::FunctionCallbackInfo<v8::Val
return;
}
- dictionaryArg = Dictionary(info[0], info.GetIsolate(), exceptionState);
+ dictionaryArg = Dictionary(info.GetIsolate(), info[0], exceptionState);
if (exceptionState.hadException())
return;
@@ -7735,7 +7735,7 @@ static void voidMethodOptionalDictionaryArgMethod(const v8::FunctionCallbackInfo
return;
}
- optionalDictionaryArg = Dictionary(info[0], info.GetIsolate(), exceptionState);
+ optionalDictionaryArg = Dictionary(info.GetIsolate(), info[0], exceptionState);
if (exceptionState.hadException())
return;

Powered by Google App Engine
This is Rietveld 408576698