Index: webkit/glue/webcursor_win.cc |
diff --git a/webkit/glue/webcursor_win.cc b/webkit/glue/webcursor_win.cc |
index 4d8e520f11113c7be2f0e5a2c266a3746d5ae3cf..785bc031120ff7c7ece9b76b36ddfa14c0fe93db 100644 |
--- a/webkit/glue/webcursor_win.cc |
+++ b/webkit/glue/webcursor_win.cc |
@@ -216,8 +216,8 @@ bool WebCursor::SerializePlatformData(Pickle* pickle) const { |
return pickle->WriteUInt32(reinterpret_cast<uint32>(external_cursor_)); |
} |
-bool WebCursor::DeserializePlatformData(const Pickle* pickle, void** iter) { |
- return pickle->ReadUInt32(iter, reinterpret_cast<uint32*>(&external_cursor_)); |
+bool WebCursor::DeserializePlatformData(PickleReader* iter) { |
+ return iter->ReadUInt32(reinterpret_cast<uint32*>(&external_cursor_)); |
} |
bool WebCursor::IsPlatformDataEqual(const WebCursor& other) const { |