diff options
Diffstat (limited to 'chrome/browser/views/extensions/browser_action_drag_data.h')
-rw-r--r-- | chrome/browser/views/extensions/browser_action_drag_data.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome/browser/views/extensions/browser_action_drag_data.h b/chrome/browser/views/extensions/browser_action_drag_data.h index 8d5d514b..583185b 100644 --- a/chrome/browser/views/extensions/browser_action_drag_data.h +++ b/chrome/browser/views/extensions/browser_action_drag_data.h @@ -8,6 +8,7 @@ #include <string> #include "base/basictypes.h" +#include "chrome/browser/profile.h" #if defined(TOOLKIT_VIEWS) #include "app/os_exchange_data.h" @@ -44,8 +45,8 @@ class BrowserActionDragData { void WriteToPickle(Profile* profile, Pickle* pickle) const; bool ReadFromPickle(Pickle* pickle); - // Path of the profile we originated from. - FilePath::StringType profile_path_; + // ID of the profile we originated from. + ProfileId profile_id_; // The id of the view being dragged. std::string id_; |