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

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

Issue 2031823002: Mojo C++ bindings: more consistent Clone() and Equals(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 template <typename StructPtrType>
2 {{struct.name}}Ptr {{struct.name}}::Clone() const {
3 // Use StructPtrType to prevent the compiler from trying to compile this
4 // without being asked.
5 StructPtrType rv(New());
6 {%- for field in struct.fields %}
7 rv->{{field.name}} = mojo::internal::Clone({{field.name}});
8 {%- endfor %}
9 return rv;
10 }
11
12 template <typename T,
13 typename std::enable_if<std::is_same<
14 T, {{struct.name}}>::value>::type*>
15 bool {{struct.name}}::Equals(const T& other) const {
16 {%- for field in struct.fields %}
17 if (!mojo::internal::Equals(this->{{field.name}}, other.{{field.name}}))
18 return false;
19 {%- endfor %}
20 return true;
21 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698