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

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

Issue 2791133002: bindings: Explicitly pass ValueType to toImplArray (Closed)
Patch Set: Fix tests Created 3 years, 9 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: third_party/WebKit/Source/bindings/tests/results/core/LongSequenceOrEvent.cpp
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/LongSequenceOrEvent.cpp b/third_party/WebKit/Source/bindings/tests/results/core/LongSequenceOrEvent.cpp
index 7e5e41dada620b2b934ba735c5b66c20eac630d4..1aa9f214abfebeda1d3f09b456142fb273e603e2 100644
--- a/third_party/WebKit/Source/bindings/tests/results/core/LongSequenceOrEvent.cpp
+++ b/third_party/WebKit/Source/bindings/tests/results/core/LongSequenceOrEvent.cpp
@@ -76,7 +76,7 @@ void V8LongSequenceOrEvent::toImpl(v8::Isolate* isolate, v8::Local<v8::Value> v8
}
if (v8Value->IsArray()) {
- Vector<int32_t> cppValue = toImplArray<Vector<int32_t>>(v8Value, 0, isolate, exceptionState);
+ Vector<int32_t> cppValue = toImplArray<Vector<int32_t>, IDLLong>(v8Value, 0, isolate, exceptionState);
if (exceptionState.hadException())
return;
impl.setLongSequence(cppValue);

Powered by Google App Engine
This is Rietveld 408576698