| Index: third_party/WebKit/Source/bindings/core/v8/NativeValueTraitsImplTest.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/NativeValueTraitsImplTest.cpp b/third_party/WebKit/Source/bindings/core/v8/NativeValueTraitsImplTest.cpp
|
| index d9d8c3938923b55a0a903150b8a82afa47464dfb..60262bb8c51fcde97b6641cd7dd0bcb2e335da46 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/NativeValueTraitsImplTest.cpp
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/NativeValueTraitsImplTest.cpp
|
| @@ -27,7 +27,7 @@ TEST(NativeValueTraitsImplTest, IDLInterface) {
|
| V8TestingScope scope;
|
| {
|
| DummyExceptionStateForTesting exceptionState;
|
| - Internals* internals = NativeValueTraits<Internals>::nativeValue(
|
| + Internals* internals = NativeValueTraits<Internals>::NativeValue(
|
| scope.isolate(), v8::Number::New(scope.isolate(), 42), exceptionState);
|
| EXPECT_TRUE(exceptionState.hadException());
|
| EXPECT_EQ("Unable to convert value to Internals.",
|
| @@ -37,7 +37,7 @@ TEST(NativeValueTraitsImplTest, IDLInterface) {
|
| {
|
| DummyExceptionStateForTesting exceptionState;
|
| TestSequenceCallback* callbackFunction =
|
| - NativeValueTraits<TestSequenceCallback>::nativeValue(
|
| + NativeValueTraits<TestSequenceCallback>::NativeValue(
|
| scope.isolate(), v8::Undefined(scope.isolate()), exceptionState);
|
| EXPECT_TRUE(exceptionState.hadException());
|
| EXPECT_EQ("Unable to convert value to TestSequenceCallback.",
|
|
|