| Index: third_party/WebKit/Source/bindings/tests/results/core/TestInterfaceOrTestInterfaceEmpty.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/tests/results/core/TestInterfaceOrTestInterfaceEmpty.cpp b/third_party/WebKit/Source/bindings/tests/results/core/TestInterfaceOrTestInterfaceEmpty.cpp
|
| index 9ed8731fc28074cf9ce8a5ec5d4d590dfd6c6aae..5eddd4ca67cae2585397bccfc396b0be60c64a41 100644
|
| --- a/third_party/WebKit/Source/bindings/tests/results/core/TestInterfaceOrTestInterfaceEmpty.cpp
|
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/TestInterfaceOrTestInterfaceEmpty.cpp
|
| @@ -89,14 +89,14 @@ void V8TestInterfaceOrTestInterfaceEmpty::toImpl(v8::Isolate* isolate, v8::Local
|
| exceptionState.throwTypeError("The provided value is not of type '(TestInterface or TestInterfaceEmpty)'");
|
| }
|
|
|
| -v8::Local<v8::Value> toV8(const TestInterfaceOrTestInterfaceEmpty& impl, v8::Local<v8::Object> creationContext, v8::Isolate* isolate) {
|
| +v8::Local<v8::Value> ToV8(const TestInterfaceOrTestInterfaceEmpty& impl, v8::Local<v8::Object> creationContext, v8::Isolate* isolate) {
|
| switch (impl.m_type) {
|
| case TestInterfaceOrTestInterfaceEmpty::SpecificTypeNone:
|
| return v8::Null(isolate);
|
| case TestInterfaceOrTestInterfaceEmpty::SpecificTypeTestInterface:
|
| - return toV8(impl.getAsTestInterface(), creationContext, isolate);
|
| + return ToV8(impl.getAsTestInterface(), creationContext, isolate);
|
| case TestInterfaceOrTestInterfaceEmpty::SpecificTypeTestInterfaceEmpty:
|
| - return toV8(impl.getAsTestInterfaceEmpty(), creationContext, isolate);
|
| + return ToV8(impl.getAsTestInterfaceEmpty(), creationContext, isolate);
|
| default:
|
| NOTREACHED();
|
| }
|
|
|