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

Unified Diff: ash/shell.h

Issue 2311393004: Laser tool blocks events from propagating. (Closed)
Patch Set: Fixed patch set 2 errors. Created 4 years, 3 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
Index: ash/shell.h
diff --git a/ash/shell.h b/ash/shell.h
index 1f4623333a5713917f1b4d6b1223d850279b0903..f311eb8fa29d21bfcc06f34ac39404f042d30883 100644
--- a/ash/shell.h
+++ b/ash/shell.h
@@ -87,6 +87,7 @@ class FirstRunHelper;
class GPUSupport;
class HighContrastController;
class ImmersiveHandlerFactoryAsh;
+class LaserPointerController;
class LinkHandlerModelFactory;
class LocaleNotificationController;
class LockStateController;
@@ -306,6 +307,10 @@ class ASH_EXPORT Shell : public SystemModalContainerEventFilterDelegate,
return high_contrast_controller_.get();
}
+ LaserPointerController* laser_pointer_controller() {
+ return laser_pointer_controller_.get();
+ }
+
MagnificationController* magnification_controller() {
return magnification_controller_.get();
}
@@ -481,6 +486,7 @@ class ASH_EXPORT Shell : public SystemModalContainerEventFilterDelegate,
std::unique_ptr<VideoDetector> video_detector_;
std::unique_ptr<WindowTreeHostManager> window_tree_host_manager_;
std::unique_ptr<HighContrastController> high_contrast_controller_;
+ std::unique_ptr<LaserPointerController> laser_pointer_controller_;
std::unique_ptr<MagnificationController> magnification_controller_;
std::unique_ptr<PartialMagnificationController>
partial_magnification_controller_;

Powered by Google App Engine
This is Rietveld 408576698