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

Unified Diff: ash/common/system/chromeos/palette/palette_tool.cc

Issue 2239743004: Palette tool laser prototype. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@patch
Patch Set: Rebased. 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ash/common/palette_delegate.h ('k') | ash/common/system/chromeos/palette/tools/laser_pointer_mode.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/common/system/chromeos/palette/palette_tool.cc
diff --git a/ash/common/system/chromeos/palette/palette_tool.cc b/ash/common/system/chromeos/palette/palette_tool.cc
index 9f50f8c5a516f0dde0607168ad629c454ae74c53..c7a97da2e96473cfdcf854b90a930d52ec74cb3e 100644
--- a/ash/common/system/chromeos/palette/palette_tool.cc
+++ b/ash/common/system/chromeos/palette/palette_tool.cc
@@ -9,6 +9,7 @@
#include "ash/common/system/chromeos/palette/tools/capture_region_action.h"
#include "ash/common/system/chromeos/palette/tools/capture_screen_action.h"
#include "ash/common/system/chromeos/palette/tools/create_note_action.h"
+#include "ash/common/system/chromeos/palette/tools/laser_pointer_mode.h"
#include "ash/common/system/chromeos/palette/tools/magnifier_mode.h"
#include "base/memory/ptr_util.h"
#include "ui/gfx/vector_icons_public.h"
@@ -20,6 +21,7 @@ void PaletteTool::RegisterToolInstances(PaletteToolManager* tool_manager) {
tool_manager->AddTool(base::MakeUnique<CaptureRegionAction>(tool_manager));
tool_manager->AddTool(base::MakeUnique<CaptureScreenAction>(tool_manager));
tool_manager->AddTool(base::MakeUnique<CreateNoteAction>(tool_manager));
+ tool_manager->AddTool(base::MakeUnique<LaserPointerMode>(tool_manager));
if (ArePaletteExperimentalFeaturesEnabled())
tool_manager->AddTool(base::MakeUnique<MagnifierMode>(tool_manager));
}
« no previous file with comments | « ash/common/palette_delegate.h ('k') | ash/common/system/chromeos/palette/tools/laser_pointer_mode.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698