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

Unified Diff: ash/launcher/launcher_alignment_menu.cc

Issue 22007003: ash: Rename "Autohide launcher" item. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: just shelf Created 7 years, 4 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 | « ash/ash_strings.grd ('k') | ash/launcher/launcher_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/launcher/launcher_alignment_menu.cc
diff --git a/ash/launcher/launcher_alignment_menu.cc b/ash/launcher/launcher_alignment_menu.cc
index 13a92bc29e2fe1c60400184e9c8338a2459706af..8d6b6cfdcd3b5ac00d178309e3be8163a190f8b9 100644
--- a/ash/launcher/launcher_alignment_menu.cc
+++ b/ash/launcher/launcher_alignment_menu.cc
@@ -13,26 +13,24 @@
namespace ash {
-LauncherAlignmentMenu::LauncherAlignmentMenu(
- aura::RootWindow* root)
+LauncherAlignmentMenu::LauncherAlignmentMenu(aura::RootWindow* root)
: ui::SimpleMenuModel(NULL),
root_window_(root) {
DCHECK(root_window_);
int align_group_id = 1;
set_delegate(this);
AddRadioItemWithStringId(MENU_ALIGN_LEFT,
- IDS_AURA_LAUNCHER_CONTEXT_MENU_ALIGN_LEFT,
+ IDS_ASH_SHELF_CONTEXT_MENU_ALIGN_LEFT,
align_group_id);
AddRadioItemWithStringId(MENU_ALIGN_BOTTOM,
- IDS_AURA_LAUNCHER_CONTEXT_MENU_ALIGN_BOTTOM,
+ IDS_ASH_SHELF_CONTEXT_MENU_ALIGN_BOTTOM,
align_group_id);
AddRadioItemWithStringId(MENU_ALIGN_RIGHT,
- IDS_AURA_LAUNCHER_CONTEXT_MENU_ALIGN_RIGHT,
+ IDS_ASH_SHELF_CONTEXT_MENU_ALIGN_RIGHT,
align_group_id);
}
-LauncherAlignmentMenu::~LauncherAlignmentMenu() {
-}
+LauncherAlignmentMenu::~LauncherAlignmentMenu() {}
bool LauncherAlignmentMenu::IsCommandIdChecked(int command_id) const {
return internal::ShelfLayoutManager::ForLauncher(root_window_)->
« no previous file with comments | « ash/ash_strings.grd ('k') | ash/launcher/launcher_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698