OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "content/common/gamepad_param_traits.h" | 5 #include "content/common/gamepad_param_traits.h" |
6 | 6 |
7 #include "base/pickle.h" | 7 #include "base/pickle.h" |
8 #include "base/strings/string16.h" | 8 #include "base/strings/string16.h" |
9 #include "base/strings/utf_string_conversions.h" | 9 #include "base/strings/utf_string_conversions.h" |
10 #include "ipc/ipc_message_utils.h" | 10 #include "ipc/ipc_message_utils.h" |
(...skipping 18 matching lines...) Expand all Loading... |
29 } | 29 } |
30 | 30 |
31 namespace IPC { | 31 namespace IPC { |
32 | 32 |
33 void ParamTraits<WebGamepad>::Write( | 33 void ParamTraits<WebGamepad>::Write( |
34 Message* m, | 34 Message* m, |
35 const WebGamepad& p) { | 35 const WebGamepad& p) { |
36 m->WriteData(reinterpret_cast<const char*>(&p), sizeof(WebGamepad)); | 36 m->WriteData(reinterpret_cast<const char*>(&p), sizeof(WebGamepad)); |
37 } | 37 } |
38 | 38 |
39 bool ParamTraits<WebGamepad>::Read( | 39 bool ParamTraits<WebGamepad>::Read(const Message* m, |
40 const Message* m, | 40 base::PickleIterator* iter, |
41 PickleIterator* iter, | 41 WebGamepad* p) { |
42 WebGamepad* p) { | |
43 int length; | 42 int length; |
44 const char* data; | 43 const char* data; |
45 if (!iter->ReadData(&data, &length) || length != sizeof(WebGamepad)) | 44 if (!iter->ReadData(&data, &length) || length != sizeof(WebGamepad)) |
46 return false; | 45 return false; |
47 memcpy(p, data, sizeof(WebGamepad)); | 46 memcpy(p, data, sizeof(WebGamepad)); |
48 | 47 |
49 return true; | 48 return true; |
50 } | 49 } |
51 | 50 |
52 void ParamTraits<WebGamepad>::Log( | 51 void ParamTraits<WebGamepad>::Log( |
(...skipping 17 matching lines...) Expand all Loading... |
70 l->append(", ["); | 69 l->append(", ["); |
71 for (size_t i = 0; i < arraysize(p.buttons); ++i) { | 70 for (size_t i = 0; i < arraysize(p.buttons); ++i) { |
72 l->append(base::StringPrintf("(%u, %f)%s", | 71 l->append(base::StringPrintf("(%u, %f)%s", |
73 p.buttons[i].pressed, p.buttons[i].value, | 72 p.buttons[i].pressed, p.buttons[i].value, |
74 i < (arraysize(p.buttons) - 1) ? ", " : "], ")); | 73 i < (arraysize(p.buttons) - 1) ? ", " : "], ")); |
75 } | 74 } |
76 l->append(")"); | 75 l->append(")"); |
77 } | 76 } |
78 | 77 |
79 } // namespace IPC | 78 } // namespace IPC |
OLD | NEW |