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 #ifndef CONTENT_COMMON_GAMEPAD_PARAM_TRAITS_H_ | 5 #ifndef CONTENT_COMMON_GAMEPAD_PARAM_TRAITS_H_ |
6 #define CONTENT_COMMON_GAMEPAD_PARAM_TRAITS_H_ | 6 #define CONTENT_COMMON_GAMEPAD_PARAM_TRAITS_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "ipc/ipc_param_traits.h" | 10 #include "ipc/ipc_param_traits.h" |
11 | 11 |
| 12 namespace base { |
12 class PickleIterator; | 13 class PickleIterator; |
| 14 } |
13 | 15 |
14 namespace blink { class WebGamepad; } | 16 namespace blink { class WebGamepad; } |
15 | 17 |
16 namespace IPC { | 18 namespace IPC { |
17 | 19 |
18 class Message; | 20 class Message; |
19 | 21 |
20 template <> | 22 template <> |
21 struct ParamTraits<blink::WebGamepad> { | 23 struct ParamTraits<blink::WebGamepad> { |
22 typedef blink::WebGamepad param_type; | 24 typedef blink::WebGamepad param_type; |
23 static void Write(Message* m, const blink::WebGamepad& p); | 25 static void Write(Message* m, const blink::WebGamepad& p); |
24 static bool Read(const Message* m, | 26 static bool Read(const Message* m, |
25 PickleIterator* iter, | 27 base::PickleIterator* iter, |
26 blink::WebGamepad* p); | 28 blink::WebGamepad* p); |
27 static void Log(const blink::WebGamepad& p, std::string* l); | 29 static void Log(const blink::WebGamepad& p, std::string* l); |
28 }; | 30 }; |
29 | 31 |
30 } // namespace IPC | 32 } // namespace IPC |
31 | 33 |
32 #endif // CONTENT_COMMON_GAMEPAD_PARAM_TRAITS_H_ | 34 #endif // CONTENT_COMMON_GAMEPAD_PARAM_TRAITS_H_ |
OLD | NEW |