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..cb0e6e0c42b86c8e18d7aca390c23350fecd51e1 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/V8BindingForIDLTypes.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; |