| Index: third_party/WebKit/Source/bindings/templates/union_container.h.tmpl
|
| diff --git a/third_party/WebKit/Source/bindings/templates/union_container.h.tmpl b/third_party/WebKit/Source/bindings/templates/union_container.h.tmpl
|
| index 29453cfaf6d8dc6e96b17d4844a78ecaa12edeee..e6ca782b6298bd7a521a3bf88af51fd1087ffd76 100644
|
| --- a/third_party/WebKit/Source/bindings/templates/union_container.h.tmpl
|
| +++ b/third_party/WebKit/Source/bindings/templates/union_container.h.tmpl
|
| @@ -56,18 +56,18 @@ class {{v8_class}} final {
|
| {{exported}}v8::Local<v8::Value> ToV8(const {{cpp_class}}&, v8::Local<v8::Object>, v8::Isolate*);
|
|
|
| template <class CallbackInfo>
|
| -inline void v8SetReturnValue(const CallbackInfo& callbackInfo, {{cpp_class}}& impl) {
|
| - v8SetReturnValue(callbackInfo, ToV8(impl, callbackInfo.Holder(), callbackInfo.GetIsolate()));
|
| +inline void V8SetReturnValue(const CallbackInfo& callbackInfo, {{cpp_class}}& impl) {
|
| + V8SetReturnValue(callbackInfo, ToV8(impl, callbackInfo.Holder(), callbackInfo.GetIsolate()));
|
| }
|
|
|
| template <class CallbackInfo>
|
| -inline void v8SetReturnValue(const CallbackInfo& callbackInfo, {{cpp_class}}& impl, v8::Local<v8::Object> creationContext) {
|
| - v8SetReturnValue(callbackInfo, ToV8(impl, creationContext, callbackInfo.GetIsolate()));
|
| +inline void V8SetReturnValue(const CallbackInfo& callbackInfo, {{cpp_class}}& impl, v8::Local<v8::Object> creationContext) {
|
| + V8SetReturnValue(callbackInfo, ToV8(impl, creationContext, callbackInfo.GetIsolate()));
|
| }
|
|
|
| template <>
|
| struct NativeValueTraits<{{cpp_class}}> : public NativeValueTraitsBase<{{cpp_class}}> {
|
| - {{exported}}static {{cpp_class}} nativeValue(v8::Isolate*, v8::Local<v8::Value>, ExceptionState&);
|
| + {{exported}}static {{cpp_class}} NativeValue(v8::Isolate*, v8::Local<v8::Value>, ExceptionState&);
|
| };
|
|
|
| template <>
|
|
|