OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "ash/common/shelf/shelf_alignment_menu.h" | 5 #include "ash/shelf/shelf_alignment_menu.h" |
6 | 6 |
7 #include "ash/common/metrics/user_metrics_action.h" | 7 #include "ash/metrics/user_metrics_action.h" |
8 #include "ash/common/shelf/wm_shelf.h" | |
9 #include "ash/common/wm_shell.h" | |
10 #include "ash/public/cpp/shelf_types.h" | 8 #include "ash/public/cpp/shelf_types.h" |
| 9 #include "ash/shelf/wm_shelf.h" |
11 #include "ash/strings/grit/ash_strings.h" | 10 #include "ash/strings/grit/ash_strings.h" |
| 11 #include "ash/wm_shell.h" |
12 | 12 |
13 namespace ash { | 13 namespace ash { |
14 | 14 |
15 ShelfAlignmentMenu::ShelfAlignmentMenu(WmShelf* wm_shelf) | 15 ShelfAlignmentMenu::ShelfAlignmentMenu(WmShelf* wm_shelf) |
16 : ui::SimpleMenuModel(nullptr), wm_shelf_(wm_shelf) { | 16 : ui::SimpleMenuModel(nullptr), wm_shelf_(wm_shelf) { |
17 DCHECK(wm_shelf_); | 17 DCHECK(wm_shelf_); |
18 const int align_group_id = 1; | 18 const int align_group_id = 1; |
19 set_delegate(this); | 19 set_delegate(this); |
20 AddRadioItemWithStringId( | 20 AddRadioItemWithStringId( |
21 MENU_ALIGN_LEFT, IDS_ASH_SHELF_CONTEXT_MENU_ALIGN_LEFT, align_group_id); | 21 MENU_ALIGN_LEFT, IDS_ASH_SHELF_CONTEXT_MENU_ALIGN_LEFT, align_group_id); |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 wm_shelf_->SetAlignment(SHELF_ALIGNMENT_BOTTOM); | 57 wm_shelf_->SetAlignment(SHELF_ALIGNMENT_BOTTOM); |
58 break; | 58 break; |
59 case MENU_ALIGN_RIGHT: | 59 case MENU_ALIGN_RIGHT: |
60 shell->RecordUserMetricsAction(UMA_SHELF_ALIGNMENT_SET_RIGHT); | 60 shell->RecordUserMetricsAction(UMA_SHELF_ALIGNMENT_SET_RIGHT); |
61 wm_shelf_->SetAlignment(SHELF_ALIGNMENT_RIGHT); | 61 wm_shelf_->SetAlignment(SHELF_ALIGNMENT_RIGHT); |
62 break; | 62 break; |
63 } | 63 } |
64 } | 64 } |
65 | 65 |
66 } // namespace ash | 66 } // namespace ash |
OLD | NEW |