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

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

Issue 226263002: Mojo: Move mojo/public/bindings to mojo/public/tools/bindings. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 6 years, 8 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 #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 #endif 8 #endif
9 9
10 #include "{{module.path}}.h" 10 #include "{{module.path}}.h"
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 {%- for interface in interfaces %} 59 {%- for interface in interfaces %}
60 {%- include "interface_definition.tmpl" %} 60 {%- include "interface_definition.tmpl" %}
61 {%- endfor %} 61 {%- endfor %}
62 {%- if namespace %} 62 {%- if namespace %}
63 } // namespace {{namespace}} 63 } // namespace {{namespace}}
64 {%- endif %} 64 {%- endif %}
65 65
66 #if defined(__clang__) 66 #if defined(__clang__)
67 #pragma clang diagnostic pop 67 #pragma clang diagnostic pop
68 #endif 68 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698