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