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

Unified Diff: chrome/browser/ui/profile_menu_model.cc

Issue 7327003: Multi-Profiles: Add customize profile menu item (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Multi-Profiles: Add customize profile menu item Created 9 years, 5 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 | « chrome/browser/ui/profile_menu_model.h ('k') | chrome/browser/ui/views/frame/glass_browser_frame_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/profile_menu_model.cc
===================================================================
--- chrome/browser/ui/profile_menu_model.cc (revision 91777)
+++ chrome/browser/ui/profile_menu_model.cc (working copy)
@@ -6,13 +6,18 @@
#include "chrome/browser/browser_process.h"
#include "chrome/browser/profiles/profile_manager.h"
+#include "chrome/common/url_constants.h"
#include "grit/chromium_strings.h"
#include "grit/generated_resources.h"
#include "ui/base/l10n/l10n_util.h"
-ProfileMenuModel::ProfileMenuModel(Profile* profile)
+ProfileMenuModel::ProfileMenuModel(Browser* browser)
: ALLOW_THIS_IN_INITIALIZER_LIST(ui::SimpleMenuModel(this)),
- profile_(profile) {
+ browser_(browser) {
+ AddItemWithStringId(COMMAND_CUSTOMIZE_PROFILE,
+ IDS_PROFILES_CUSTOMIZE_PROFILE);
+ AddSeparator();
+
const string16 short_product_name =
l10n_util::GetStringUTF16(IDS_SHORT_PRODUCT_NAME);
AddItem(COMMAND_CREATE_NEW_PROFILE, l10n_util::GetStringFUTF16(
@@ -40,12 +45,15 @@
void ProfileMenuModel::ExecuteCommand(int command_id) {
switch (command_id) {
+ case COMMAND_CUSTOMIZE_PROFILE:
+ browser_->ShowOptionsTab(chrome::kPersonalOptionsSubPage);
+ break;
case COMMAND_CREATE_NEW_PROFILE:
ProfileManager::CreateMultiProfileAsync();
break;
case COMMAND_DELETE_PROFILE:
g_browser_process->profile_manager()->ScheduleProfileForDeletion(
- profile_->GetPath());
+ browser_->profile()->GetPath());
break;
default:
NOTREACHED();
« no previous file with comments | « chrome/browser/ui/profile_menu_model.h ('k') | chrome/browser/ui/views/frame/glass_browser_frame_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698