Index: chrome/browser/ui/profile_menu_model.h |
=================================================================== |
--- chrome/browser/ui/profile_menu_model.h (revision 91776) |
+++ chrome/browser/ui/profile_menu_model.h (working copy) |
@@ -8,6 +8,8 @@ |
#include "ui/base/models/simple_menu_model.h" |
+class Profile; |
+ |
// ProfileMenuModel |
// |
// Menu for the multi-profile button displayed on the browser frame when the |
@@ -16,7 +18,7 @@ |
class ProfileMenuModel : public ui::SimpleMenuModel, |
public ui::SimpleMenuModel::Delegate { |
public: |
- explicit ProfileMenuModel(); |
+ explicit ProfileMenuModel(Profile* profile); |
virtual ~ProfileMenuModel(); |
// ui::SimpleMenuModel::Delegate implementation |
@@ -29,8 +31,11 @@ |
private: |
enum { |
COMMAND_CREATE_NEW_PROFILE, |
+ COMMAND_DELETE_PROFILE, |
}; |
+ Profile* profile_; |
+ |
DISALLOW_COPY_AND_ASSIGN(ProfileMenuModel); |
}; |