Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(441)

Unified Diff: content/common/cursors/webcursor.h

Issue 1149113006: Move Pickle to base namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/common/content_param_traits.h ('k') | content/common/cursors/webcursor_android.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.
« no previous file with comments | « content/common/content_param_traits.h ('k') | content/common/cursors/webcursor_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698