Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(851)

Side by Side Diff: mojo/public/bindings/generators/cpp_templates/module.h.tmpl

Issue 198343002: Mojo: request/response bindings (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 {%- set header_guard = "%s_H_"| 5 {%- set header_guard = "%s_H_"|
6 format(module.path|upper|replace("/","_")|replace(".","_")) %} 6 format(module.path|upper|replace("/","_")|replace(".","_")) %}
7 7
8 #ifndef {{header_guard}} 8 #ifndef {{header_guard}}
9 #define {{header_guard}} 9 #define {{header_guard}}
10 10
11 #include "mojo/public/bindings/array.h" 11 #include "mojo/public/bindings/array.h"
12 #include "mojo/public/bindings/callback.h"
12 #include "mojo/public/bindings/interface.h" 13 #include "mojo/public/bindings/interface.h"
13 #include "{{module.path}}-internal.h" 14 #include "{{module.path}}-internal.h"
14 {%- for import in imports %} 15 {%- for import in imports %}
15 #include "{{import.module.path}}.h" 16 #include "{{import.module.path}}.h"
16 {%- endfor %} 17 {%- endfor %}
17 18
18 namespace {{namespace}} { 19 namespace {{namespace}} {
19 20
20 {#--- Enums #} 21 {#--- Enums #}
21 {% for enum in enums %} 22 {% for enum in enums %}
(...skipping 16 matching lines...) Expand all
38 {%- endfor %} 39 {%- endfor %}
39 40
40 {#--- Interface Stubs -#} 41 {#--- Interface Stubs -#}
41 {% for interface in interfaces %} 42 {% for interface in interfaces %}
42 {% include "interface_stub_declaration.tmpl" %} 43 {% include "interface_stub_declaration.tmpl" %}
43 {%- endfor %} 44 {%- endfor %}
44 45
45 } // namespace {{namespace}} 46 } // namespace {{namespace}}
46 47
47 #endif // {{header_guard}} 48 #endif // {{header_guard}}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698