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

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

Issue 1410053006: Move third_party/mojo/src/mojo/public to mojo/public (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 5 years, 1 month 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)
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 123
124 {%- for namespace in namespaces_as_array|reverse %} 124 {%- for namespace in namespaces_as_array|reverse %}
125 } // namespace {{namespace}} 125 } // namespace {{namespace}}
126 {%- endfor %} 126 {%- endfor %}
127 127
128 #if defined(__clang__) 128 #if defined(__clang__)
129 #pragma clang diagnostic pop 129 #pragma clang diagnostic pop
130 #elif defined(_MSC_VER) 130 #elif defined(_MSC_VER)
131 #pragma warning(pop) 131 #pragma warning(pop)
132 #endif 132 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698