Index: third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceNode.cpp |
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceNode.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceNode.cpp |
index 2ce3bc81ed75532b11ea976cc482837890178dcc..def669b841fbc84008aab298e3ff94bafa007bb9 100644 |
--- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceNode.cpp |
+++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceNode.cpp |
@@ -12,7 +12,9 @@ |
#include "V8TestInterfaceNode.h" |
#include "bindings/core/v8/ExceptionState.h" |
+#include "bindings/core/v8/IDLTypes.h" |
#include "bindings/core/v8/V8AbstractEventListener.h" |
+#include "bindings/core/v8/V8BindingForIDLTypes.h" |
#include "bindings/core/v8/V8DOMConfiguration.h" |
#include "bindings/core/v8/V8EventListenerHelper.h" |
#include "bindings/core/v8/V8ObjectConstructor.h" |
@@ -213,7 +215,7 @@ static void perWorldBindingsTestInterfaceEmptyMethodOptionalBooleanArgMethod(con |
v8SetReturnValueFast(info, impl->perWorldBindingsTestInterfaceEmptyMethodOptionalBooleanArg(), impl); |
return; |
} |
- optionalBooleanArgument = toBoolean(info.GetIsolate(), info[0], exceptionState); |
+ optionalBooleanArgument = NativeValueTraits<IDLBoolean>::nativeValue(info.GetIsolate(), info[0], exceptionState); |
if (exceptionState.hadException()) |
return; |
@@ -236,7 +238,7 @@ static void perWorldBindingsTestInterfaceEmptyMethodOptionalBooleanArgMethodForM |
v8SetReturnValueForMainWorld(info, impl->perWorldBindingsTestInterfaceEmptyMethodOptionalBooleanArg()); |
return; |
} |
- optionalBooleanArgument = toBoolean(info.GetIsolate(), info[0], exceptionState); |
+ optionalBooleanArgument = NativeValueTraits<IDLBoolean>::nativeValue(info.GetIsolate(), info[0], exceptionState); |
if (exceptionState.hadException()) |
return; |