Index: third_party/WebKit/Source/bindings/tests/results/core/V8TestNode.cpp |
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestNode.cpp b/third_party/WebKit/Source/bindings/tests/results/core/V8TestNode.cpp |
index a9bdc0bf00e3ec66dd5c7e88ad924e1d3522cb2e..c5f01e02476e7e550de56312946c362f53782e48 100644 |
--- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestNode.cpp |
+++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestNode.cpp |
@@ -12,6 +12,8 @@ |
#include "V8TestNode.h" |
#include "bindings/core/v8/ExceptionState.h" |
+#include "bindings/core/v8/IDLTypes.h" |
+#include "bindings/core/v8/NativeValueTraitsImpl.h" |
#include "bindings/core/v8/V8DOMConfiguration.h" |
#include "bindings/core/v8/V8ObjectConstructor.h" |
#include "core/dom/Document.h" |
@@ -131,7 +133,7 @@ static void hrefByteStringAttributeSetter(v8::Local<v8::Value> v8Value, const v8 |
ExceptionState exceptionState(info.GetIsolate(), ExceptionState::SetterContext, "TestNode", "hrefByteString"); |
// Prepare the value to be set. |
- V8StringResource<> cppValue = toByteString(info.GetIsolate(), v8Value, exceptionState); |
+ V8StringResource<> cppValue = NativeValueTraits<IDLByteString>::nativeValue(info.GetIsolate(), v8Value, exceptionState); |
if (exceptionState.hadException()) |
return; |