OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 #include "mojo/public/cpp/bindings/tests/struct_with_traits_impl_traits.h" | 5 #include "mojo/public/cpp/bindings/tests/struct_with_traits_impl_traits.h" |
6 #include "mojo/public/interfaces/bindings/tests/struct_with_traits.mojom.h" | 6 #include "mojo/public/interfaces/bindings/tests/struct_with_traits.mojom.h" |
7 | 7 |
8 namespace mojo { | 8 namespace mojo { |
9 | 9 |
10 // static | 10 // static |
11 bool StructTraits<test::StructWithTraits, test::StructWithTraitsImpl>::Read( | 11 bool StructTraits<test::StructWithTraits, test::StructWithTraitsImpl>::Read( |
12 test::StructWithTraits_Reader r, | 12 test::StructWithTraits_Reader r, |
13 test::StructWithTraitsImpl* out) { | 13 test::StructWithTraitsImpl* out) { |
14 out->set_bool(r.f_bool()); | 14 out->set_bool(r.f_bool()); |
15 out->set_uint32(r.f_uint32()); | 15 out->set_uint32(r.f_uint32()); |
16 out->set_uint64(r.f_uint64()); | 16 out->set_uint64(r.f_uint64()); |
17 out->set_string(r.f_string().as_string()); | 17 out->set_string(r.f_string().as_string()); |
18 return true; | 18 return r.f_string() == r.f_string2(); |
19 } | 19 } |
20 | 20 |
21 } // namespace mojo | 21 } // namespace mojo |
OLD | NEW |