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

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

Issue 2686763002: [Mojo Video Capture] Split OnIncomingCapturedVideoFrame() to OnNewBuffer() and OnFrameReadyInBuffer( (Closed)
Patch Set: rebase Created 3 years, 9 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 template <typename StructPtrType> 1 template <typename StructPtrType>
2 {{struct.name}}Ptr {{struct.name}}::Clone() const { 2 {{struct.name}}Ptr {{struct.name}}::Clone() const {
3 // Use StructPtrType to prevent the compiler from trying to compile this 3 // Use StructPtrType to prevent the compiler from trying to compile this
4 // without being asked. 4 // without being asked.
5 StructPtrType rv(New()); 5 StructPtrType rv(New());
6 {%- for field in struct.fields %} 6 {%- for field in struct.fields %}
7 rv->{{field.name}} = mojo::internal::Clone({{field.name}}); 7 rv->{{field.name}} = mojo::Clone({{field.name}});
8 {%- endfor %} 8 {%- endfor %}
9 return rv; 9 return rv;
10 } 10 }
11 11
12 template <typename T, 12 template <typename T,
13 typename std::enable_if<std::is_same< 13 typename std::enable_if<std::is_same<
14 T, {{struct.name}}>::value>::type*> 14 T, {{struct.name}}>::value>::type*>
15 bool {{struct.name}}::Equals(const T& other) const { 15 bool {{struct.name}}::Equals(const T& other) const {
16 {%- for field in struct.fields %} 16 {%- for field in struct.fields %}
17 if (!mojo::internal::Equals(this->{{field.name}}, other.{{field.name}})) 17 if (!mojo::internal::Equals(this->{{field.name}}, other.{{field.name}}))
18 return false; 18 return false;
19 {%- endfor %} 19 {%- endfor %}
20 return true; 20 return true;
21 } 21 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698