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

Side by Side Diff: ash/common/system/chromeos/palette/tools/magnifier_mode.cc

Issue 2269383002: Magnifier border is now more visible on light backgrounds. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Created 4 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "ash/common/system/chromeos/palette/tools/magnifier_mode.h"
6
7 #include "ash/common/palette_delegate.h"
8 #include "ash/common/system/chromeos/palette/palette_ids.h"
9 #include "ash/common/wm_shell.h"
10 #include "grit/ash_strings.h"
11 #include "ui/base/l10n/l10n_util.h"
12
13 namespace ash {
14
15 MagnifierMode::MagnifierMode(Delegate* delegate)
16 : CommonPaletteTool(delegate) {}
17
18 MagnifierMode::~MagnifierMode() {}
19
20 PaletteGroup MagnifierMode::GetGroup() const {
21 return PaletteGroup::MODE;
22 }
23
24 PaletteToolId MagnifierMode::GetToolId() const {
25 return PaletteToolId::MAGNIFY;
26 }
27
28 gfx::VectorIconId MagnifierMode::GetActiveTrayIcon() {
29 return gfx::VectorIconId::PALETTE_TRAY_ICON_MAGNIFY;
30 }
31
32 void MagnifierMode::OnEnable() {
33 CommonPaletteTool::OnEnable();
34 WmShell::Get()->palette_delegate()->SetPartialMagnifierState(true);
35 }
36
37 void MagnifierMode::OnDisable() {
38 CommonPaletteTool::OnDisable();
39 WmShell::Get()->palette_delegate()->SetPartialMagnifierState(false);
40 }
41
42 views::View* MagnifierMode::CreateView() {
43 return CreateDefaultView(
44 l10n_util::GetStringUTF16(IDS_ASH_PALETTE_MAGNIFIER_MODE));
45 }
46
47 gfx::VectorIconId MagnifierMode::GetPaletteIconId() {
48 return gfx::VectorIconId::PALETTE_MODE_MAGNIFY;
49 }
50
51 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698