| Index: content/common/cursors/webcursor.cc
|
| diff --git a/content/common/cursors/webcursor.cc b/content/common/cursors/webcursor.cc
|
| index 85721fdd0e2bae52ef010ff19ae60df6eb764d36..6bc3f3eb98fa7985262f2a056f10d399ccff798a 100644
|
| --- a/content/common/cursors/webcursor.cc
|
| +++ b/content/common/cursors/webcursor.cc
|
| @@ -80,7 +80,7 @@ void WebCursor::GetCursorInfo(CursorInfo* cursor_info) const {
|
| #endif
|
| }
|
|
|
| -bool WebCursor::Deserialize(PickleIterator* iter) {
|
| +bool WebCursor::Deserialize(base::PickleIterator* iter) {
|
| int type, hotspot_x, hotspot_y, size_x, size_y, data_len;
|
| float scale;
|
| const char* data;
|
| @@ -132,7 +132,7 @@ bool WebCursor::Deserialize(PickleIterator* iter) {
|
| return DeserializePlatformData(iter);
|
| }
|
|
|
| -bool WebCursor::Serialize(Pickle* pickle) const {
|
| +bool WebCursor::Serialize(base::Pickle* pickle) const {
|
| if (!pickle->WriteInt(type_) ||
|
| !pickle->WriteInt(hotspot_.x()) ||
|
| !pickle->WriteInt(hotspot_.y()) ||
|
|
|