| Index: third_party/WebKit/Source/bindings/tests/results/core/TestInterfaceOrLong.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/tests/results/core/TestInterfaceOrLong.cpp b/third_party/WebKit/Source/bindings/tests/results/core/TestInterfaceOrLong.cpp
|
| index 0a8e109e57ea3b27c4f76a9535a6940abd9fb211..7d3662ce56634c687f8f76f58fbccefde4281487 100644
|
| --- a/third_party/WebKit/Source/bindings/tests/results/core/TestInterfaceOrLong.cpp
|
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/TestInterfaceOrLong.cpp
|
| @@ -95,12 +95,12 @@ void V8TestInterfaceOrLong::toImpl(v8::Isolate* isolate, v8::Local<v8::Value> v8
|
| }
|
| }
|
|
|
| -v8::Local<v8::Value> toV8(const TestInterfaceOrLong& impl, v8::Local<v8::Object> creationContext, v8::Isolate* isolate) {
|
| +v8::Local<v8::Value> ToV8(const TestInterfaceOrLong& impl, v8::Local<v8::Object> creationContext, v8::Isolate* isolate) {
|
| switch (impl.m_type) {
|
| case TestInterfaceOrLong::SpecificTypeNone:
|
| return v8::Null(isolate);
|
| case TestInterfaceOrLong::SpecificTypeTestInterface:
|
| - return toV8(impl.getAsTestInterface(), creationContext, isolate);
|
| + return ToV8(impl.getAsTestInterface(), creationContext, isolate);
|
| case TestInterfaceOrLong::SpecificTypeLong:
|
| return v8::Integer::New(isolate, impl.getAsLong());
|
| default:
|
|
|