OLD | NEW |
---|---|
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // This file has been auto-generated by {{code_generator}}. DO NOT MODIFY! | 5 // This file has been auto-generated by {{code_generator}}. DO NOT MODIFY! |
6 | 6 |
7 #ifndef {{macro_guard}} | 7 #ifndef {{macro_guard}} |
8 #define {{macro_guard}} | 8 #define {{macro_guard}} |
9 | 9 |
10 {% for filename in header_includes %} | 10 {% for filename in header_includes %} |
11 #include "{{filename}}" | 11 #include "{{filename}}" |
12 {% endfor %} | 12 {% endfor %} |
13 | 13 |
14 namespace blink { | 14 namespace blink { |
15 | 15 |
16 {% for decl in header_forward_decls %} | 16 {% for decl in header_forward_decls %} |
17 class {{decl}}; | 17 class {{decl}}; |
18 {% endfor %} | 18 {% endfor %} |
19 | 19 |
20 {% for container in containers %} | 20 {% for container in containers %} |
21 class {{container.cpp_class}} final { | 21 class {{container.cpp_class}} final { |
22 ALLOW_ONLY_INLINE_ALLOCATION(); | 22 ALLOW_ONLY_INLINE_ALLOCATION(); |
23 public: | 23 public: |
24 {{container.cpp_class}}(); | 24 {{container.cpp_class}}(); |
25 bool isNull() const { return m_type == SpecificTypeNone; } | 25 bool isNull() const { return m_type == SpecificTypeNone; } |
26 | 26 |
27 {% for member in container.members %} | 27 {% for member in container.members %} |
28 bool is{{member.type_name}}() const { return m_type == {{member.specific_typ e_enum}}; } | 28 bool is{{member.type_name}}() const { return m_type == {{member.specific_typ e_enum}}; } |
29 {{member.rvalue_cpp_type}} getAs{{member.type_name}}(); | 29 {{member.rvalue_cpp_type}} getAs{{member.type_name}}() const; |
bashi
2014/11/04 11:32:48
Need "const" for argument setters like below:
voi
| |
30 void set{{member.type_name}}({{member.rvalue_cpp_type}}); | 30 void set{{member.type_name}}({{member.rvalue_cpp_type}}); |
31 | 31 |
32 {% endfor %} | 32 {% endfor %} |
33 {% if container.needs_trace %} | 33 {% if container.needs_trace %} |
34 void trace(Visitor*); | 34 void trace(Visitor*); |
35 | 35 |
36 {% endif %} | 36 {% endif %} |
37 private: | 37 private: |
38 enum SpecificTypes { | 38 enum SpecificTypes { |
39 SpecificTypeNone, | 39 SpecificTypeNone, |
(...skipping 18 matching lines...) Expand all Loading... | |
58 template <class CallbackInfo> | 58 template <class CallbackInfo> |
59 inline void v8SetReturnValue(const CallbackInfo& callbackInfo, {{container.cpp_c lass}}& impl) | 59 inline void v8SetReturnValue(const CallbackInfo& callbackInfo, {{container.cpp_c lass}}& impl) |
60 { | 60 { |
61 v8SetReturnValue(callbackInfo, toV8(impl, callbackInfo.Holder(), callbackInf o.GetIsolate())); | 61 v8SetReturnValue(callbackInfo, toV8(impl, callbackInfo.Holder(), callbackInf o.GetIsolate())); |
62 } | 62 } |
63 | 63 |
64 {% endfor %} | 64 {% endfor %} |
65 } // namespace blink | 65 } // namespace blink |
66 | 66 |
67 #endif // {{macro_guard}} | 67 #endif // {{macro_guard}} |
OLD | NEW |