| 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 0a4b605953a87b6a1031122c47e55dc674038f8a..2140802e13bd9fa2b35a1a6ec2c3f76bffc45b52 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,12 +28,12 @@ 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;
|
|
|
| - // Called when an event arrives.
|
| - virtual void OnEvent(const ui::Event& event) = 0;
|
| -
|
| // Called when the Display loses capture.
|
| virtual void OnNativeCaptureLost() = 0;
|
|
|
|
|