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

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

Issue 2250183003: Make the fuchsia mojo/public repo the source of truth. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 4 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
OLDNEW
(Empty)
1 // NOTE: This file was generated by the Mojo bindings generator.
2 #include "{{module.path}}.h"
3
4 #include <math.h>
5 #include <ostream>
6
7 #include "mojo/public/cpp/bindings/lib/array_serialization.h"
8 #include "mojo/public/cpp/bindings/lib/bindings_serialization.h"
9 #include "mojo/public/cpp/bindings/lib/bounds_checker.h"
10 #include "mojo/public/cpp/bindings/lib/map_data_internal.h"
11 #include "mojo/public/cpp/bindings/lib/map_serialization.h"
12 #include "mojo/public/cpp/bindings/lib/message_builder.h"
13 #include "mojo/public/cpp/bindings/lib/message_validation.h"
14 #include "mojo/public/cpp/bindings/lib/string_serialization.h"
15 #include "mojo/public/cpp/bindings/lib/validate_params.h"
16 #include "mojo/public/cpp/bindings/lib/validation_errors.h"
17 #include "mojo/public/cpp/bindings/lib/validation_util.h"
18 #include "mojo/public/cpp/environment/logging.h"
19
20 {%- for namespace in namespaces_as_array %}
21 namespace {{namespace}} {
22 {%- endfor %}
23
24 // --- Interface definitions ---
25 {%- for interface in interfaces %}
26 {%- include "interface_definition.tmpl" %}
27 {%- endfor %}
28
29 {%- for namespace in namespaces_as_array|reverse %}
30 } // namespace {{namespace}}
31 {%- endfor %}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698