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

Unified Diff: services/ui/ws/platform_display_delegate.h

Issue 2712963003: mustash: Use ui::chromeos::EventRewriter in mus (Closed)
Patch Set: Rebase and fix build issues. Created 3 years, 9 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: services/ui/ws/platform_display_delegate.h
diff --git a/services/ui/ws/platform_display_delegate.h b/services/ui/ws/platform_display_delegate.h
index e416c3a3c9f52a77c368c8c18ec5271af86ed22d..cf6e07cb5971ddb10d0f1295d9996a65e69787d2 100644
--- a/services/ui/ws/platform_display_delegate.h
+++ b/services/ui/ws/platform_display_delegate.h
@@ -11,7 +11,7 @@ class Display;
namespace ui {
-class Event;
+class EventSink;
namespace ws {
@@ -28,14 +28,14 @@ class PlatformDisplayDelegate {
// Returns the root window of this display.
virtual ServerWindow* GetRootWindow() = 0;
+ // Returns the event sink of this display;
+ virtual EventSink* GetEventSink() = 0;
+
// Called once when the AcceleratedWidget is available for drawing.
virtual void OnAcceleratedWidgetAvailable() = 0;
virtual bool IsInHighContrastMode() = 0;
- // Called when an event arrives.
- virtual void OnEvent(const ui::Event& event) = 0;
-
// Called when the Display loses capture.
virtual void OnNativeCaptureLost() = 0;

Powered by Google App Engine
This is Rietveld 408576698