OLD | NEW |
1 {# http://www.chromium.org/blink/coding-style#TOC-License #} | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 /* | 2 // Use of this source code is governed by a BSD-style license that can be |
3 * Copyright (C) 2013 Google Inc. All rights reserved. | 3 // found in the LICENSE file. |
4 * | |
5 * Redistribution and use in source and binary forms, with or without | |
6 * modification, are permitted provided that the following conditions are | |
7 * met: | |
8 * | |
9 * * Redistributions of source code must retain the above copyright | |
10 * notice, this list of conditions and the following disclaimer. | |
11 * * Redistributions in binary form must reproduce the above | |
12 * copyright notice, this list of conditions and the following disclaimer | |
13 * in the documentation and/or other materials provided with the | |
14 * distribution. | |
15 * * Neither the name of Google Inc. nor the names of its | |
16 * contributors may be used to endorse or promote products derived from | |
17 * this software without specific prior written permission. | |
18 * | |
19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | |
20 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | |
21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | |
22 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | |
23 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | |
24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | |
25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | |
26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | |
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | |
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | |
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
30 */ | |
31 | 4 |
32 {# FIXME: Rename to Python when switch #} | 5 // This file has been auto-generated by {{code_generator}}. DO NOT MODIFY! |
33 // This file has been auto-generated by code_generator_v8.pm. DO NOT MODIFY! | |
34 | 6 |
35 #include "config.h" | 7 #include "config.h" |
36 {% filter conditional(conditional_string) %} | 8 {% filter conditional(conditional_string) %} |
37 #include "{{v8_class}}.h" | 9 #include "{{v8_class}}.h" |
38 | 10 |
39 {% for filename in cpp_includes %} | 11 {% for filename in cpp_includes %} |
40 #include "{{filename}}" | 12 #include "{{filename}}" |
41 {% endfor %} | 13 {% endfor %} |
42 | 14 |
43 namespace WebCore { | 15 namespace WebCore { |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 {% if method.idl_type == 'boolean' %} | 68 {% if method.idl_type == 'boolean' %} |
97 return invokeCallback(m_callback.newLocal(m_isolate), {{this_handle_paramete
r}}{{method.arguments | length}}, argv, executionContext(), m_isolate); | 69 return invokeCallback(m_callback.newLocal(m_isolate), {{this_handle_paramete
r}}{{method.arguments | length}}, argv, executionContext(), m_isolate); |
98 {% else %}{# void #} | 70 {% else %}{# void #} |
99 invokeCallback(m_callback.newLocal(m_isolate), {{this_handle_parameter}}{{me
thod.arguments | length}}, argv, executionContext(), m_isolate); | 71 invokeCallback(m_callback.newLocal(m_isolate), {{this_handle_parameter}}{{me
thod.arguments | length}}, argv, executionContext(), m_isolate); |
100 {% endif %} | 72 {% endif %} |
101 } | 73 } |
102 | 74 |
103 {% endfor %} | 75 {% endfor %} |
104 } // namespace WebCore | 76 } // namespace WebCore |
105 {% endfilter %} | 77 {% endfilter %} |
OLD | NEW |