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

Unified Diff: ash/common/shelf/shelf_alignment_menu.cc

Issue 2734653002: chromeos: Move files in //ash/common to //ash (Closed)
Patch Set: fix a11y tests, fix docs Created 3 years, 10 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/common/shelf/shelf_alignment_menu.h ('k') | ash/common/shelf/shelf_application_menu_model.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/common/shelf/shelf_alignment_menu.cc
diff --git a/ash/common/shelf/shelf_alignment_menu.cc b/ash/common/shelf/shelf_alignment_menu.cc
deleted file mode 100644
index 12c48b281a2a601d0967607e3bb453207bdc16ee..0000000000000000000000000000000000000000
--- a/ash/common/shelf/shelf_alignment_menu.cc
+++ /dev/null
@@ -1,66 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "ash/common/shelf/shelf_alignment_menu.h"
-
-#include "ash/common/metrics/user_metrics_action.h"
-#include "ash/common/shelf/wm_shelf.h"
-#include "ash/common/wm_shell.h"
-#include "ash/public/cpp/shelf_types.h"
-#include "ash/strings/grit/ash_strings.h"
-
-namespace ash {
-
-ShelfAlignmentMenu::ShelfAlignmentMenu(WmShelf* wm_shelf)
- : ui::SimpleMenuModel(nullptr), wm_shelf_(wm_shelf) {
- DCHECK(wm_shelf_);
- const int align_group_id = 1;
- set_delegate(this);
- AddRadioItemWithStringId(
- MENU_ALIGN_LEFT, IDS_ASH_SHELF_CONTEXT_MENU_ALIGN_LEFT, align_group_id);
- AddRadioItemWithStringId(MENU_ALIGN_BOTTOM,
- IDS_ASH_SHELF_CONTEXT_MENU_ALIGN_BOTTOM,
- align_group_id);
- AddRadioItemWithStringId(
- MENU_ALIGN_RIGHT, IDS_ASH_SHELF_CONTEXT_MENU_ALIGN_RIGHT, align_group_id);
-}
-
-ShelfAlignmentMenu::~ShelfAlignmentMenu() {}
-
-bool ShelfAlignmentMenu::IsCommandIdChecked(int command_id) const {
- switch (wm_shelf_->GetAlignment()) {
- case SHELF_ALIGNMENT_BOTTOM:
- case SHELF_ALIGNMENT_BOTTOM_LOCKED:
- return command_id == MENU_ALIGN_BOTTOM;
- case SHELF_ALIGNMENT_LEFT:
- return command_id == MENU_ALIGN_LEFT;
- case SHELF_ALIGNMENT_RIGHT:
- return command_id == MENU_ALIGN_RIGHT;
- }
- return false;
-}
-
-bool ShelfAlignmentMenu::IsCommandIdEnabled(int command_id) const {
- return true;
-}
-
-void ShelfAlignmentMenu::ExecuteCommand(int command_id, int event_flags) {
- WmShell* shell = WmShell::Get();
- switch (static_cast<MenuItem>(command_id)) {
- case MENU_ALIGN_LEFT:
- shell->RecordUserMetricsAction(UMA_SHELF_ALIGNMENT_SET_LEFT);
- wm_shelf_->SetAlignment(SHELF_ALIGNMENT_LEFT);
- break;
- case MENU_ALIGN_BOTTOM:
- shell->RecordUserMetricsAction(UMA_SHELF_ALIGNMENT_SET_BOTTOM);
- wm_shelf_->SetAlignment(SHELF_ALIGNMENT_BOTTOM);
- break;
- case MENU_ALIGN_RIGHT:
- shell->RecordUserMetricsAction(UMA_SHELF_ALIGNMENT_SET_RIGHT);
- wm_shelf_->SetAlignment(SHELF_ALIGNMENT_RIGHT);
- break;
- }
-}
-
-} // namespace ash
« no previous file with comments | « ash/common/shelf/shelf_alignment_menu.h ('k') | ash/common/shelf/shelf_application_menu_model.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698