| Index: Source/bindings/templates/private_script_interface.h
|
| diff --git a/Source/bindings/templates/private_script_interface.h b/Source/bindings/templates/private_script_interface.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..d97883abad5ef4a2100a0a0e7c51b5cb2a03de83
|
| --- /dev/null
|
| +++ b/Source/bindings/templates/private_script_interface.h
|
| @@ -0,0 +1,28 @@
|
| +// Copyright 2014 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +// This file has been auto-generated by {{code_generator}}. DO NOT MODIFY!
|
| +
|
| +#ifndef {{v8_class}}_h
|
| +#define {{v8_class}}_h
|
| +
|
| +{% for filename in header_includes %}
|
| +#include "{{filename}}"
|
| +{% endfor %}
|
| +
|
| +namespace WebCore {
|
| +
|
| +{% for forward_declaration in forward_declarations %}
|
| +class {{forward_declaration}};
|
| +{% endfor %}
|
| +
|
| +class {{v8_class}} {
|
| +public:
|
| +{% for method in methods %}
|
| + static bool {{method.name}}({{method.argument_declarations | join(', ')}});
|
| +{% endfor %}
|
| +};
|
| +
|
| +}
|
| +#endif // {{v8_class}}_h
|
|
|