| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 // This file has been auto-generated by {{code_generator}}. DO NOT MODIFY! |
| 6 |
| 7 #ifndef {{v8_class}}_h |
| 8 #define {{v8_class}}_h |
| 9 |
| 10 {% for filename in header_includes %} |
| 11 #include "{{filename}}" |
| 12 {% endfor %} |
| 13 |
| 14 namespace WebCore { |
| 15 |
| 16 {% for forward_declaration in forward_declarations %} |
| 17 class {{forward_declaration}}; |
| 18 {% endfor %} |
| 19 |
| 20 class {{v8_class}} { |
| 21 public: |
| 22 {% for method in methods %} |
| 23 static bool {{method.name}}({{method.argument_declarations | join(', ')}}); |
| 24 {% endfor %} |
| 25 }; |
| 26 |
| 27 } |
| 28 #endif // {{v8_class}}_h |
| OLD | NEW |