| Index: third_party/WebKit/Source/bindings/templates/web_module_interface.h.tmpl
|
| diff --git a/third_party/WebKit/Source/bindings/templates/web_module_interface.h.tmpl b/third_party/WebKit/Source/bindings/templates/web_module_interface.h.tmpl
|
| index 4ffb1978e5c8ae65aa0c7794ad2f5225c93ac259..b705eeafbb26dfa54a45b96b6d5f97e533ef00e1 100644
|
| --- a/third_party/WebKit/Source/bindings/templates/web_module_interface.h.tmpl
|
| +++ b/third_party/WebKit/Source/bindings/templates/web_module_interface.h.tmpl
|
| @@ -3,8 +3,8 @@
|
| {% include 'copyright_block.txt' %}
|
|
|
| // TODO(dglazkov): Use chromium-style path.
|
| -#ifndef {{class_name}}_h
|
| -#define {{class_name}}_h
|
| +#ifndef {{class_name.macro}}_H
|
| +#define {{class_name.macro}}_H
|
|
|
| {% for include_file in header_includes %}
|
| #include "{{include_file}}"
|
| @@ -13,13 +13,13 @@
|
| namespace blink {
|
| namespace api {
|
|
|
| -class {{class_name}}{{inherits_expression}} {
|
| +class {{class_name.pascal}}{{inherits_expression}} {
|
|
|
| };
|
|
|
| } // namespace api
|
| } // namespace blink
|
|
|
| -#endif // {{class_name}}_h
|
| +#endif // {{class_name.macro}}_H
|
|
|
| {% endfilter %}
|
|
|