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