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: Source/bindings/tests/results/core/V8TestObject.cpp

Issue 700733003: IDL: Support union type arrays and sequences for method arguments (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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: Source/bindings/tests/results/core/V8TestObject.cpp
diff --git a/Source/bindings/tests/results/core/V8TestObject.cpp b/Source/bindings/tests/results/core/V8TestObject.cpp
index 06b4a73a991f6fa56e18354a011fe5ae88e8d72d..9047a4e2831c0a338862995074565d0ab3c498cc 100644
--- a/Source/bindings/tests/results/core/V8TestObject.cpp
+++ b/Source/bindings/tests/results/core/V8TestObject.cpp
@@ -1081,7 +1081,7 @@ static void windowAttributeAttributeSetter(v8::Local<v8::Value> v8Value, const v
{
v8::Handle<v8::Object> holder = info.Holder();
TestObject* impl = V8TestObject::toImpl(holder);
- LocalDOMWindow* cppValue = toDOMWindow(v8Value, info.GetIsolate());
+ DOMWindow* cppValue = toDOMWindow(v8Value, info.GetIsolate());
impl->setWindowAttribute(WTF::getPtr(cppValue));
}
@@ -8260,7 +8260,7 @@ static void promiseOverloadMethod2Method(const v8::FunctionCallbackInfo<v8::Valu
{
ExceptionState exceptionState(ExceptionState::ExecutionContext, "promiseOverloadMethod", "TestObject", info.Holder(), info.GetIsolate());
TestObject* impl = V8TestObject::toImpl(info.Holder());
- LocalDOMWindow* arg1;
+ DOMWindow* arg1;
double arg2;
{
arg1 = toDOMWindow(info[0], info.GetIsolate());

Powered by Google App Engine
This is Rietveld 408576698