| Index: third_party/WebKit/Source/bindings/tests/results/core/TestInterface2OrUint8Array.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/tests/results/core/TestInterface2OrUint8Array.cpp b/third_party/WebKit/Source/bindings/tests/results/core/TestInterface2OrUint8Array.cpp
|
| index abe25c0fc7065867ad2d07d54f94bfb2b3185cb9..b08950b9c0f9dfeceb9d1fe7be03b5f2395f6d68 100644
|
| --- a/third_party/WebKit/Source/bindings/tests/results/core/TestInterface2OrUint8Array.cpp
|
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/TestInterface2OrUint8Array.cpp
|
| @@ -83,14 +83,14 @@ void V8TestInterface2OrUint8Array::toImpl(v8::Isolate* isolate, v8::Local<v8::Va
|
| exceptionState.throwTypeError("The provided value is not of type '(TestInterface2 or Uint8Array)'");
|
| }
|
|
|
| -v8::Local<v8::Value> toV8(const TestInterface2OrUint8Array& impl, v8::Local<v8::Object> creationContext, v8::Isolate* isolate) {
|
| +v8::Local<v8::Value> ToV8(const TestInterface2OrUint8Array& impl, v8::Local<v8::Object> creationContext, v8::Isolate* isolate) {
|
| switch (impl.m_type) {
|
| case TestInterface2OrUint8Array::SpecificTypeNone:
|
| return v8::Null(isolate);
|
| case TestInterface2OrUint8Array::SpecificTypeTestInterface2:
|
| - return toV8(impl.getAsTestInterface2(), creationContext, isolate);
|
| + return ToV8(impl.getAsTestInterface2(), creationContext, isolate);
|
| case TestInterface2OrUint8Array::SpecificTypeUint8Array:
|
| - return toV8(impl.getAsUint8Array(), creationContext, isolate);
|
| + return ToV8(impl.getAsUint8Array(), creationContext, isolate);
|
| default:
|
| NOTREACHED();
|
| }
|
|
|