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

Unified Diff: ash/shell.h

Issue 11743013: Scaling scroll/fling events in multi-monitor setup (Closed) Base URL: https://chromium.googlesource.com/chromium/src@git-svn
Patch Set: Addressing Ben's comment Created 7 years, 11 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/display/event_transformation_handler.cc ('k') | ash/shell.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/shell.h
diff --git a/ash/shell.h b/ash/shell.h
index 0e2919d28b90de0fe899a347270651be0d52d8c1..bc86059a0e120670429be4e43ce22be551425c63 100644
--- a/ash/shell.h
+++ b/ash/shell.h
@@ -102,6 +102,7 @@ class DisplayManager;
class DragDropController;
class EventClientImpl;
class EventRewriterEventFilter;
+class EventTransformationHandler;
class FocusCycler;
class MouseCursorEventFilter;
class OutputConfiguratorAnimation;
@@ -317,6 +318,9 @@ class ASH_EXPORT Shell
internal::MouseCursorEventFilter* mouse_cursor_filter() {
return mouse_cursor_filter_.get();
}
+ internal::EventTransformationHandler* event_transformation_handler() {
+ return event_transformation_handler_.get();
+ }
CursorManager* cursor_manager() { return &cursor_manager_; }
ShellDelegate* delegate() { return delegate_.get(); }
@@ -535,6 +539,8 @@ class ASH_EXPORT Shell
scoped_ptr<internal::ScreenPositionController> screen_position_controller_;
scoped_ptr<internal::SystemModalContainerEventFilter> modality_filter_;
scoped_ptr<internal::EventClientImpl> event_client_;
+ scoped_ptr<internal::EventTransformationHandler>
+ event_transformation_handler_;
scoped_ptr<RootWindowHostFactory> root_window_host_factory_;
// An event filter that rewrites or drops an event.
« no previous file with comments | « ash/display/event_transformation_handler.cc ('k') | ash/shell.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698