Chromium Code Reviews| Index: ash/system/palette/tools/metalayer_mode.h |
| diff --git a/ash/system/palette/tools/metalayer_mode.h b/ash/system/palette/tools/metalayer_mode.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..fbfe0f716d8d83ee257011269b2a8985cd5406f9 |
| --- /dev/null |
| +++ b/ash/system/palette/tools/metalayer_mode.h |
| @@ -0,0 +1,42 @@ |
| +// Copyright 2016 The Chromium Authors. All rights reserved. |
|
oshima
2017/04/20 19:56:58
nit: 2017
Vladislav Kaznacheev
2017/04/20 20:09:55
Done.
|
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef ASH_SYSTEM_PALETTE_TOOLS_METALAYER_MODE_H_ |
| +#define ASH_SYSTEM_PALETTE_TOOLS_METALAYER_MODE_H_ |
| + |
| +#include "ash/ash_export.h" |
| +#include "ash/system/palette/common_palette_tool.h" |
| +#include "base/memory/weak_ptr.h" |
| + |
| +namespace ash { |
| + |
| +// A palette tool that lets the user select a screen region to be passed |
| +// to the voice interaction framework. |
| +class ASH_EXPORT MetalayerMode : public CommonPaletteTool { |
| + public: |
| + explicit MetalayerMode(Delegate* delegate); |
| + ~MetalayerMode() override; |
| + |
| + private: |
| + // PaletteTool: |
| + PaletteGroup GetGroup() const override; |
| + PaletteToolId GetToolId() const override; |
| + void OnEnable() override; |
| + void OnDisable() override; |
| + const gfx::VectorIcon& GetActiveTrayIcon() const override; |
| + views::View* CreateView() override; |
| + |
| + // CommonPaletteTool: |
| + const gfx::VectorIcon& GetPaletteIcon() const override; |
| + |
| + void OnMetalayerDone(); |
| + |
| + base::WeakPtrFactory<MetalayerMode> weak_factory_; |
| + |
| + DISALLOW_COPY_AND_ASSIGN(MetalayerMode); |
| +}; |
| + |
| +} // namespace ash |
| + |
| +#endif // ASH_SYSTEM_PALETTE_TOOLS_METALAYER_MODE_H_ |