| Index: content/public/common/common_param_traits.h
|
| diff --git a/content/public/common/common_param_traits.h b/content/public/common/common_param_traits.h
|
| index 52d7a2f8c9b7f37af21ec992a6d99b9d329cac50..657ef646c71986ab629dffe8f763700df8017a6c 100644
|
| --- a/content/public/common/common_param_traits.h
|
| +++ b/content/public/common/common_param_traits.h
|
| @@ -89,11 +89,11 @@
|
| }
|
| static bool Read(const Message* m, PickleIterator* iter, param_type* r) {
|
| #if defined(OS_WIN)
|
| - return iter->ReadUInt32(reinterpret_cast<uint32*>(r));
|
| + return m->ReadUInt32(iter, reinterpret_cast<uint32*>(r));
|
| #else
|
| const char *data;
|
| int data_size = 0;
|
| - bool result = iter->ReadData(&data, &data_size);
|
| + bool result = m->ReadData(iter, &data, &data_size);
|
| if (result && data_size == sizeof(gfx::NativeWindow)) {
|
| memcpy(r, data, sizeof(gfx::NativeWindow));
|
| } else {
|
|
|