| Index: third_party/WebKit/Source/bindings/tests/results/core/ArrayBufferOrArrayBufferViewOrDictionary.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/tests/results/core/ArrayBufferOrArrayBufferViewOrDictionary.cpp b/third_party/WebKit/Source/bindings/tests/results/core/ArrayBufferOrArrayBufferViewOrDictionary.cpp
|
| index 45bdf4ee03c392c4c593da60d308875bca21d62e..7373e070086b9d762e06c076d473835c6676d5b5 100644
|
| --- a/third_party/WebKit/Source/bindings/tests/results/core/ArrayBufferOrArrayBufferViewOrDictionary.cpp
|
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/ArrayBufferOrArrayBufferViewOrDictionary.cpp
|
| @@ -111,14 +111,14 @@ void V8ArrayBufferOrArrayBufferViewOrDictionary::toImpl(v8::Isolate* isolate, v8
|
| exceptionState.throwTypeError("The provided value is not of type '(ArrayBuffer or ArrayBufferView or Dictionary)'");
|
| }
|
|
|
| -v8::Local<v8::Value> toV8(const ArrayBufferOrArrayBufferViewOrDictionary& impl, v8::Local<v8::Object> creationContext, v8::Isolate* isolate) {
|
| +v8::Local<v8::Value> ToV8(const ArrayBufferOrArrayBufferViewOrDictionary& impl, v8::Local<v8::Object> creationContext, v8::Isolate* isolate) {
|
| switch (impl.m_type) {
|
| case ArrayBufferOrArrayBufferViewOrDictionary::SpecificTypeNone:
|
| return v8::Null(isolate);
|
| case ArrayBufferOrArrayBufferViewOrDictionary::SpecificTypeArrayBuffer:
|
| - return toV8(impl.getAsArrayBuffer(), creationContext, isolate);
|
| + return ToV8(impl.getAsArrayBuffer(), creationContext, isolate);
|
| case ArrayBufferOrArrayBufferViewOrDictionary::SpecificTypeArrayBufferView:
|
| - return toV8(impl.getAsArrayBufferView(), creationContext, isolate);
|
| + return ToV8(impl.getAsArrayBufferView(), creationContext, isolate);
|
| case ArrayBufferOrArrayBufferViewOrDictionary::SpecificTypeDictionary:
|
| return impl.getAsDictionary().v8Value();
|
| default:
|
|
|