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

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

Issue 1219893005: Delete interface_impl.h. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 5 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
« no previous file with comments | « mojo/public/cpp/bindings/tests/validation_unittest.cc ('k') | sky/viewer/document_view.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/cpp/bindings/array.h" 11 #include "mojo/public/cpp/bindings/array.h"
12 #include "mojo/public/cpp/bindings/callback.h" 12 #include "mojo/public/cpp/bindings/callback.h"
13 #include "mojo/public/cpp/bindings/interface_impl.h"
14 #include "mojo/public/cpp/bindings/interface_ptr.h" 13 #include "mojo/public/cpp/bindings/interface_ptr.h"
15 #include "mojo/public/cpp/bindings/interface_request.h" 14 #include "mojo/public/cpp/bindings/interface_request.h"
16 #include "mojo/public/cpp/bindings/lib/control_message_handler.h" 15 #include "mojo/public/cpp/bindings/lib/control_message_handler.h"
17 #include "mojo/public/cpp/bindings/lib/control_message_proxy.h" 16 #include "mojo/public/cpp/bindings/lib/control_message_proxy.h"
18 #include "mojo/public/cpp/bindings/map.h" 17 #include "mojo/public/cpp/bindings/map.h"
19 #include "mojo/public/cpp/bindings/message_filter.h" 18 #include "mojo/public/cpp/bindings/message_filter.h"
20 #include "mojo/public/cpp/bindings/no_interface.h" 19 #include "mojo/public/cpp/bindings/no_interface.h"
21 #include "mojo/public/cpp/bindings/string.h" 20 #include "mojo/public/cpp/bindings/string.h"
22 #include "mojo/public/cpp/bindings/struct_ptr.h" 21 #include "mojo/public/cpp/bindings/struct_ptr.h"
23 #include "{{module.path}}-internal.h" 22 #include "{{module.path}}-internal.h"
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 {% for union in unions %} 130 {% for union in unions %}
132 {% include "union_serialization_declaration.tmpl" %} 131 {% include "union_serialization_declaration.tmpl" %}
133 {%- endfor %} 132 {%- endfor %}
134 {%- endif %} 133 {%- endif %}
135 134
136 {%- for namespace in namespaces_as_array|reverse %} 135 {%- for namespace in namespaces_as_array|reverse %}
137 } // namespace {{namespace}} 136 } // namespace {{namespace}}
138 {%- endfor %} 137 {%- endfor %}
139 138
140 #endif // {{header_guard}} 139 #endif // {{header_guard}}
OLDNEW
« no previous file with comments | « mojo/public/cpp/bindings/tests/validation_unittest.cc ('k') | sky/viewer/document_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698