| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 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/system/palette/tools/laser_pointer_mode.h" | 5 #include "ash/system/palette/tools/laser_pointer_mode.h" |
| 6 | 6 |
| 7 #include "ash/palette_delegate.h" | 7 #include "ash/palette_delegate.h" |
| 8 #include "ash/resources/vector_icons/vector_icons.h" | 8 #include "ash/resources/vector_icons/vector_icons.h" |
| 9 #include "ash/shell_port.h" |
| 9 #include "ash/strings/grit/ash_strings.h" | 10 #include "ash/strings/grit/ash_strings.h" |
| 10 #include "ash/system/palette/palette_ids.h" | 11 #include "ash/system/palette/palette_ids.h" |
| 11 #include "ash/wm_shell.h" | |
| 12 #include "ui/base/l10n/l10n_util.h" | 12 #include "ui/base/l10n/l10n_util.h" |
| 13 | 13 |
| 14 namespace ash { | 14 namespace ash { |
| 15 | 15 |
| 16 LaserPointerMode::LaserPointerMode(Delegate* delegate) | 16 LaserPointerMode::LaserPointerMode(Delegate* delegate) |
| 17 : CommonPaletteTool(delegate) { | 17 : CommonPaletteTool(delegate) { |
| 18 } | 18 } |
| 19 | 19 |
| 20 LaserPointerMode::~LaserPointerMode() {} | 20 LaserPointerMode::~LaserPointerMode() {} |
| 21 | 21 |
| 22 PaletteGroup LaserPointerMode::GetGroup() const { | 22 PaletteGroup LaserPointerMode::GetGroup() const { |
| 23 return PaletteGroup::MODE; | 23 return PaletteGroup::MODE; |
| 24 } | 24 } |
| 25 | 25 |
| 26 PaletteToolId LaserPointerMode::GetToolId() const { | 26 PaletteToolId LaserPointerMode::GetToolId() const { |
| 27 return PaletteToolId::LASER_POINTER; | 27 return PaletteToolId::LASER_POINTER; |
| 28 } | 28 } |
| 29 | 29 |
| 30 void LaserPointerMode::OnEnable() { | 30 void LaserPointerMode::OnEnable() { |
| 31 CommonPaletteTool::OnEnable(); | 31 CommonPaletteTool::OnEnable(); |
| 32 | 32 |
| 33 WmShell::Get()->SetLaserPointerEnabled(true); | 33 ShellPort::Get()->SetLaserPointerEnabled(true); |
| 34 delegate()->HidePalette(); | 34 delegate()->HidePalette(); |
| 35 } | 35 } |
| 36 | 36 |
| 37 void LaserPointerMode::OnDisable() { | 37 void LaserPointerMode::OnDisable() { |
| 38 CommonPaletteTool::OnDisable(); | 38 CommonPaletteTool::OnDisable(); |
| 39 | 39 |
| 40 WmShell::Get()->SetLaserPointerEnabled(false); | 40 ShellPort::Get()->SetLaserPointerEnabled(false); |
| 41 } | 41 } |
| 42 | 42 |
| 43 const gfx::VectorIcon& LaserPointerMode::GetActiveTrayIcon() const { | 43 const gfx::VectorIcon& LaserPointerMode::GetActiveTrayIcon() const { |
| 44 return kPaletteTrayIconLaserPointerIcon; | 44 return kPaletteTrayIconLaserPointerIcon; |
| 45 } | 45 } |
| 46 | 46 |
| 47 const gfx::VectorIcon& LaserPointerMode::GetPaletteIcon() const { | 47 const gfx::VectorIcon& LaserPointerMode::GetPaletteIcon() const { |
| 48 return kPaletteModeLaserPointerIcon; | 48 return kPaletteModeLaserPointerIcon; |
| 49 } | 49 } |
| 50 | 50 |
| 51 views::View* LaserPointerMode::CreateView() { | 51 views::View* LaserPointerMode::CreateView() { |
| 52 return CreateDefaultView( | 52 return CreateDefaultView( |
| 53 l10n_util::GetStringUTF16(IDS_ASH_STYLUS_TOOLS_LASER_POINTER_MODE)); | 53 l10n_util::GetStringUTF16(IDS_ASH_STYLUS_TOOLS_LASER_POINTER_MODE)); |
| 54 } | 54 } |
| 55 } // namespace ash | 55 } // namespace ash |
| OLD | NEW |