| Index: content/common/gamepad_param_traits.cc
|
| diff --git a/content/common/gamepad_param_traits.cc b/content/common/gamepad_param_traits.cc
|
| index 095154d8e4e18d19e7317961a91b906d8ff517df..5a343fa1e0654164de9d7da46c071440e491c3b8 100644
|
| --- a/content/common/gamepad_param_traits.cc
|
| +++ b/content/common/gamepad_param_traits.cc
|
| @@ -33,13 +33,11 @@ void LogWebUCharString(
|
|
|
| namespace IPC {
|
|
|
| -void ParamTraits<WebGamepad>::Write(
|
| - Message* m,
|
| - const WebGamepad& p) {
|
| +void ParamTraits<WebGamepad>::Write(base::Pickle* m, const WebGamepad& p) {
|
| m->WriteData(reinterpret_cast<const char*>(&p), sizeof(WebGamepad));
|
| }
|
|
|
| -bool ParamTraits<WebGamepad>::Read(const Message* m,
|
| +bool ParamTraits<WebGamepad>::Read(const base::Pickle* m,
|
| base::PickleIterator* iter,
|
| WebGamepad* p) {
|
| int length;
|
|
|