Chromium Code Reviews| Index: mojo/public/tools/bindings/generators/cpp_templates/module-internal.h.tmpl |
| diff --git a/mojo/public/tools/bindings/generators/cpp_templates/module-internal.h.tmpl b/mojo/public/tools/bindings/generators/cpp_templates/module-internal.h.tmpl |
| index 2d748fc95455cd23fb777ba83fcaa19d443f89e7..eeead473b2a5f30cbc5cf824fbd11a45fd98b04e 100644 |
| --- a/mojo/public/tools/bindings/generators/cpp_templates/module-internal.h.tmpl |
| +++ b/mojo/public/tools/bindings/generators/cpp_templates/module-internal.h.tmpl |
| @@ -2,8 +2,15 @@ |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| +{%- if variant -%} |
| +{%- set variant_path = "%s-%s"|format(module.path, variant) -%} |
| +{%- else -%} |
| +{%- set variant_path = module.path -%} |
| +{%- endif -%} |
| + |
| {%- set header_guard = "%s_INTERNAL_H_"| |
| - format(module.path|upper|replace("/","_")|replace(".","_")) %} |
| + format(variant_path|upper| |
| + replace("/","_")|replace(".","_")|replace("-", "_")) %} |
|
yzshen1
2015/12/15 23:02:53
nit: the indent is a little unusual.
(And also in
|
| #ifndef {{header_guard}} |
| #define {{header_guard}} |
| @@ -27,6 +34,9 @@ class BoundsChecker; |
| {%- for namespace in namespaces_as_array %} |
| namespace {{namespace}} { |
| {%- endfor %} |
| +{%- if variant %} |
| +namespace {{variant}} { |
| +{%- endif %} |
| {#--- Wrapper forward declarations #} |
| {% for struct in structs %} |
| @@ -65,6 +75,9 @@ class {{union.name}}_Data; |
| #pragma pack(pop) |
| } // namespace internal |
| +{%- if variant %} |
| +} // namespace {{variant}} |
| +{%- endif %} |
| {%- for namespace in namespaces_as_array|reverse %} |
| } // namespace {{namespace}} |
| {%- endfor %} |