| Index: third_party/WebKit/Source/bindings/tests/results/core/DoubleOrString.h
|
| diff --git a/third_party/WebKit/Source/bindings/tests/results/core/DoubleOrString.h b/third_party/WebKit/Source/bindings/tests/results/core/DoubleOrString.h
|
| index 786854528b916f0606e51c62d4508446536459f9..4e24e6e52f0097a2c2c7d2aec9c379b4197134a4 100644
|
| --- a/third_party/WebKit/Source/bindings/tests/results/core/DoubleOrString.h
|
| +++ b/third_party/WebKit/Source/bindings/tests/results/core/DoubleOrString.h
|
| @@ -52,7 +52,7 @@ class CORE_EXPORT DoubleOrString final {
|
| double m_double;
|
| String m_string;
|
|
|
| - friend CORE_EXPORT v8::Local<v8::Value> toV8(const DoubleOrString&, v8::Local<v8::Object>, v8::Isolate*);
|
| + friend CORE_EXPORT v8::Local<v8::Value> ToV8(const DoubleOrString&, v8::Local<v8::Object>, v8::Isolate*);
|
| };
|
|
|
| class V8DoubleOrString final {
|
| @@ -60,11 +60,11 @@ class V8DoubleOrString final {
|
| CORE_EXPORT static void toImpl(v8::Isolate*, v8::Local<v8::Value>, DoubleOrString&, UnionTypeConversionMode, ExceptionState&);
|
| };
|
|
|
| -CORE_EXPORT v8::Local<v8::Value> toV8(const DoubleOrString&, v8::Local<v8::Object>, v8::Isolate*);
|
| +CORE_EXPORT v8::Local<v8::Value> ToV8(const DoubleOrString&, v8::Local<v8::Object>, v8::Isolate*);
|
|
|
| template <class CallbackInfo>
|
| inline void v8SetReturnValue(const CallbackInfo& callbackInfo, DoubleOrString& impl) {
|
| - v8SetReturnValue(callbackInfo, toV8(impl, callbackInfo.Holder(), callbackInfo.GetIsolate()));
|
| + v8SetReturnValue(callbackInfo, ToV8(impl, callbackInfo.Holder(), callbackInfo.GetIsolate()));
|
| }
|
|
|
| template <>
|
|
|