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

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

Issue 611633002: mojom: Add associative arrays to the mojom language. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Moved test classes to their own shared file. Created 6 years, 2 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
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 #if defined(__clang__) 5 #if defined(__clang__)
6 #pragma clang diagnostic push 6 #pragma clang diagnostic push
7 #pragma clang diagnostic ignored "-Wunused-private-field" 7 #pragma clang diagnostic ignored "-Wunused-private-field"
8 #elif defined(_MSC_VER) 8 #elif defined(_MSC_VER)
9 #pragma warning(push) 9 #pragma warning(push)
10 #pragma warning(disable:4056) 10 #pragma warning(disable:4056)
11 #pragma warning(disable:4756) 11 #pragma warning(disable:4756)
12 #endif 12 #endif
13 13
14 #include "{{module.path}}.h" 14 #include "{{module.path}}.h"
15 15
16 #include <math.h> 16 #include <math.h>
17 17
18 #include "mojo/public/cpp/bindings/lib/array_serialization.h" 18 #include "mojo/public/cpp/bindings/lib/array_serialization.h"
19 #include "mojo/public/cpp/bindings/lib/bindings_serialization.h" 19 #include "mojo/public/cpp/bindings/lib/bindings_serialization.h"
20 #include "mojo/public/cpp/bindings/lib/bounds_checker.h" 20 #include "mojo/public/cpp/bindings/lib/bounds_checker.h"
21 #include "mojo/public/cpp/bindings/lib/map_data_internal.h"
22 #include "mojo/public/cpp/bindings/lib/map_serialization.h"
21 #include "mojo/public/cpp/bindings/lib/message_builder.h" 23 #include "mojo/public/cpp/bindings/lib/message_builder.h"
22 #include "mojo/public/cpp/bindings/lib/string_serialization.h" 24 #include "mojo/public/cpp/bindings/lib/string_serialization.h"
25 #include "mojo/public/cpp/bindings/lib/validate_params.h"
23 #include "mojo/public/cpp/bindings/lib/validation_errors.h" 26 #include "mojo/public/cpp/bindings/lib/validation_errors.h"
24 27
25 {%- for namespace in namespaces_as_array %} 28 {%- for namespace in namespaces_as_array %}
26 namespace {{namespace}} { 29 namespace {{namespace}} {
27 {%- endfor %} 30 {%- endfor %}
28 31
29 {#--- Constants #} 32 {#--- Constants #}
30 {% for constant in module.constants %} 33 {% for constant in module.constants %}
31 const {{constant.kind|cpp_pod_type}} {{constant.name}} = {{constant|constant_val ue}}; 34 const {{constant.kind|cpp_pod_type}} {{constant.name}} = {{constant|constant_val ue}};
32 {%- endfor %} 35 {%- endfor %}
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 88
86 {%- for namespace in namespaces_as_array|reverse %} 89 {%- for namespace in namespaces_as_array|reverse %}
87 } // namespace {{namespace}} 90 } // namespace {{namespace}}
88 {%- endfor %} 91 {%- endfor %}
89 92
90 #if defined(__clang__) 93 #if defined(__clang__)
91 #pragma clang diagnostic pop 94 #pragma clang diagnostic pop
92 #elif defined(_MSC_VER) 95 #elif defined(_MSC_VER)
93 #pragma warning(pop) 96 #pragma warning(pop)
94 #endif 97 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698