OLD | NEW |
| (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/capture_screen_action.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 "ash/resources/vector_icons/vector_icons.h" | |
11 #include "ash/strings/grit/ash_strings.h" | |
12 #include "ui/base/l10n/l10n_util.h" | |
13 | |
14 namespace ash { | |
15 | |
16 CaptureScreenAction::CaptureScreenAction(Delegate* delegate) | |
17 : CommonPaletteTool(delegate) {} | |
18 | |
19 CaptureScreenAction::~CaptureScreenAction() {} | |
20 | |
21 PaletteGroup CaptureScreenAction::GetGroup() const { | |
22 return PaletteGroup::ACTION; | |
23 } | |
24 | |
25 PaletteToolId CaptureScreenAction::GetToolId() const { | |
26 return PaletteToolId::CAPTURE_SCREEN; | |
27 } | |
28 | |
29 void CaptureScreenAction::OnEnable() { | |
30 CommonPaletteTool::OnEnable(); | |
31 | |
32 delegate()->DisableTool(GetToolId()); | |
33 delegate()->HidePaletteImmediately(); | |
34 WmShell::Get()->palette_delegate()->TakeScreenshot(); | |
35 } | |
36 | |
37 views::View* CaptureScreenAction::CreateView() { | |
38 return CreateDefaultView( | |
39 l10n_util::GetStringUTF16(IDS_ASH_STYLUS_TOOLS_CAPTURE_SCREEN_ACTION)); | |
40 } | |
41 | |
42 const gfx::VectorIcon& CaptureScreenAction::GetPaletteIcon() const { | |
43 return kPaletteActionCaptureScreenIcon; | |
44 } | |
45 | |
46 } // namespace ash | |
OLD | NEW |