| Index: third_party/WebKit/Source/bindings/templates/dictionary_v8.h.tmpl
|
| diff --git a/third_party/WebKit/Source/bindings/templates/dictionary_v8.h.tmpl b/third_party/WebKit/Source/bindings/templates/dictionary_v8.h.tmpl
|
| index 8de11ffaf611cf3607423fbceb6c45dbd1f2ac2a..b66c795ba8bb65d1ab57777c6c6278e93056937e 100644
|
| --- a/third_party/WebKit/Source/bindings/templates/dictionary_v8.h.tmpl
|
| +++ b/third_party/WebKit/Source/bindings/templates/dictionary_v8.h.tmpl
|
| @@ -13,30 +13,29 @@ namespace blink {
|
| class ExceptionState;
|
|
|
| class {{v8_class}} {
|
| -public:
|
| - {{exported}}static void toImpl(v8::Isolate*, v8::Local<v8::Value>, {{cpp_class}}&, ExceptionState&);
|
| + public:
|
| + {{exported}}static void toImpl(v8::Isolate*, v8::Local<v8::Value>, {{cpp_class}}&, ExceptionState&);
|
| };
|
|
|
| {{exported}}bool toV8{{cpp_class}}(const {{cpp_class}}&, v8::Local<v8::Object> dictionary, v8::Local<v8::Object> creationContext, 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 <>
|
| struct NativeValueTraits<{{cpp_class}}> {
|
| - static {{cpp_class}} nativeValue(v8::Isolate*, v8::Local<v8::Value>, ExceptionState&);
|
| + static {{cpp_class}} nativeValue(v8::Isolate*, v8::Local<v8::Value>, ExceptionState&);
|
| };
|
|
|
| template <>
|
| struct V8TypeOf<{{cpp_class}}> {
|
| - typedef {{v8_class}} Type;
|
| + typedef {{v8_class}} Type;
|
| };
|
|
|
| -} // namespace blink
|
| +} // namespace blink
|
|
|
| -#endif // {{v8_original_class}}_h
|
| +#endif // {{v8_original_class}}_h
|
|
|
| {% endfilter %}{# format_blink_cpp_source_code #}
|
|
|