| 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.h" | 5 #include "mojo/public/cpp/bindings/tests/struct_with_traits_impl.h" |
| 6 | 6 |
| 7 #include "mojo/public/interfaces/bindings/tests/struct_with_traits.mojom.h" | |
| 8 | |
| 9 namespace mojo { | 7 namespace mojo { |
| 10 namespace test { | 8 namespace test { |
| 11 | 9 |
| 12 StructWithTraitsImpl::StructWithTraitsImpl() {} | 10 StructWithTraitsImpl::StructWithTraitsImpl() {} |
| 13 | 11 |
| 14 StructWithTraitsImpl::~StructWithTraitsImpl() {} | 12 StructWithTraitsImpl::~StructWithTraitsImpl() {} |
| 15 | 13 |
| 16 } // namespace test | 14 } // namespace test |
| 17 | |
| 18 // static | |
| 19 bool StructTraits<test::StructWithTraits, test::StructWithTraitsImpl>::Read( | |
| 20 test::StructWithTraits_Reader r, | |
| 21 test::StructWithTraitsImpl* out) { | |
| 22 out->set_bool(r.f_bool()); | |
| 23 out->set_uint32(r.f_uint32()); | |
| 24 out->set_uint64(r.f_uint64()); | |
| 25 out->set_string(r.f_string().as_string()); | |
| 26 return true; | |
| 27 } | |
| 28 | |
| 29 } // namespace mojo | 15 } // namespace mojo |
| OLD | NEW |