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

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

Issue 2509713002: binding: Makes Dictionary throw an exception (constructor). (Closed)
Patch Set: Addressed review comments. 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/V8TestDictionary.cpp
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestDictionary.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8TestDictionary.cpp
index dd6e8fa3a7c8afac1865abb2358685860282f3c2..9150267b8b4650b70358646e67e0114666ac98d3 100644
--- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestDictionary.cpp
+++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestDictionary.cpp
@@ -106,7 +106,7 @@ void V8TestDictionary::toImpl(v8::Isolate* isolate, v8::Local<v8::Value> v8Value
if (dictionaryMemberValue.IsEmpty() || dictionaryMemberValue->IsUndefined()) {
// Do nothing.
} else {
- Dictionary dictionaryMember = Dictionary(dictionaryMemberValue, isolate, exceptionState);
+ Dictionary dictionaryMember = Dictionary(isolate, dictionaryMemberValue, exceptionState);
if (exceptionState.hadException())
return;
if (!dictionaryMember.isObject()) {

Powered by Google App Engine
This is Rietveld 408576698