| Index: content/common/cursors/webcursor.h
|
| diff --git a/content/common/cursors/webcursor.h b/content/common/cursors/webcursor.h
|
| index cd78c5800043f4fc3d02d1066f27f970c911e5c6..3efc2ee234cd0df92d9bfe4781d5f791843e4923 100644
|
| --- a/content/common/cursors/webcursor.h
|
| +++ b/content/common/cursors/webcursor.h
|
| @@ -31,8 +31,10 @@ class NSCursor;
|
| #endif
|
| #endif
|
|
|
| +namespace base {
|
| class Pickle;
|
| class PickleIterator;
|
| +}
|
|
|
| namespace content {
|
|
|
| @@ -81,8 +83,8 @@ class CONTENT_EXPORT WebCursor {
|
| void GetCursorInfo(CursorInfo* cursor_info) const;
|
|
|
| // Serialization / De-serialization
|
| - bool Deserialize(PickleIterator* iter);
|
| - bool Serialize(Pickle* pickle) const;
|
| + bool Deserialize(base::PickleIterator* iter);
|
| + bool Serialize(base::Pickle* pickle) const;
|
|
|
| // Returns true if GetCustomCursor should be used to allocate a platform
|
| // specific cursor object. Otherwise GetCursor should be used.
|
| @@ -131,8 +133,8 @@ class CONTENT_EXPORT WebCursor {
|
| void InitPlatformData();
|
|
|
| // Platform specific Serialization / De-serialization
|
| - bool SerializePlatformData(Pickle* pickle) const;
|
| - bool DeserializePlatformData(PickleIterator* iter);
|
| + bool SerializePlatformData(base::Pickle* pickle) const;
|
| + bool DeserializePlatformData(base::PickleIterator* iter);
|
|
|
| // Returns true if the platform data in the current cursor object
|
| // matches that of the cursor passed in.
|
|
|