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

Unified Diff: chrome/browser/ui/views/extensions/browser_action_drag_data.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
Index: chrome/browser/ui/views/extensions/browser_action_drag_data.h
diff --git a/chrome/browser/ui/views/extensions/browser_action_drag_data.h b/chrome/browser/ui/views/extensions/browser_action_drag_data.h
index 39ebd335711aedfef9dda6cc800e76008fc7e963..ed36426cdbbcd50e1221ba8efbb835f944ed40f4 100644
--- a/chrome/browser/ui/views/extensions/browser_action_drag_data.h
+++ b/chrome/browser/ui/views/extensions/browser_action_drag_data.h
@@ -13,9 +13,12 @@
#include "ui/base/dragdrop/os_exchange_data.h"
#endif
-class Pickle;
class Profile;
+namespace base {
+class Pickle;
+}
+
class BrowserActionDragData {
public:
BrowserActionDragData();
@@ -47,8 +50,8 @@ class BrowserActionDragData {
#endif
private:
- void WriteToPickle(Profile* profile, Pickle* pickle) const;
- bool ReadFromPickle(Pickle* pickle);
+ void WriteToPickle(Profile* profile, base::Pickle* pickle) const;
+ bool ReadFromPickle(base::Pickle* pickle);
// The profile we originated from.
void* profile_;
« no previous file with comments | « chrome/browser/ui/app_list/fast_show_pickler.h ('k') | chrome/browser/ui/views/extensions/browser_action_drag_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698