| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef UI_DISPLAY_CHROMEOS_X11_NATIVE_DISPLAY_EVENT_DISPATCHER_X11_H_ | 5 #ifndef UI_DISPLAY_MANAGER_CHROMEOS_X11_NATIVE_DISPLAY_EVENT_DISPATCHER_X11_H_ |
| 6 #define UI_DISPLAY_CHROMEOS_X11_NATIVE_DISPLAY_EVENT_DISPATCHER_X11_H_ | 6 #define UI_DISPLAY_MANAGER_CHROMEOS_X11_NATIVE_DISPLAY_EVENT_DISPATCHER_X11_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "base/time/tick_clock.h" | 11 #include "base/time/tick_clock.h" |
| 12 #include "base/time/time.h" | 12 #include "base/time/time.h" |
| 13 #include "ui/display/chromeos/x11/native_display_delegate_x11.h" | 13 #include "ui/display/manager/chromeos/x11/native_display_delegate_x11.h" |
| 14 #include "ui/events/platform/platform_event_dispatcher.h" | 14 #include "ui/events/platform/platform_event_dispatcher.h" |
| 15 | 15 |
| 16 namespace ui { | 16 namespace ui { |
| 17 | 17 |
| 18 // The implementation is interested in the cases of RRNotify events which | 18 // The implementation is interested in the cases of RRNotify events which |
| 19 // correspond to output add/remove events. Note that Output add/remove events | 19 // correspond to output add/remove events. Note that Output add/remove events |
| 20 // are sent in response to our own reconfiguration operations so spurious events | 20 // are sent in response to our own reconfiguration operations so spurious events |
| 21 // are common. Spurious events will have no effect. | 21 // are common. Spurious events will have no effect. |
| 22 class DISPLAY_EXPORT NativeDisplayEventDispatcherX11 | 22 class DISPLAY_MANAGER_EXPORT NativeDisplayEventDispatcherX11 |
| 23 : public ui::PlatformEventDispatcher { | 23 : public ui::PlatformEventDispatcher { |
| 24 public: | 24 public: |
| 25 NativeDisplayEventDispatcherX11( | 25 NativeDisplayEventDispatcherX11( |
| 26 NativeDisplayDelegateX11::HelperDelegate* delegate, | 26 NativeDisplayDelegateX11::HelperDelegate* delegate, |
| 27 int xrandr_event_base); | 27 int xrandr_event_base); |
| 28 ~NativeDisplayEventDispatcherX11() override; | 28 ~NativeDisplayEventDispatcherX11() override; |
| 29 | 29 |
| 30 // ui::PlatformEventDispatcher: | 30 // ui::PlatformEventDispatcher: |
| 31 bool CanDispatchEvent(const PlatformEvent& event) override; | 31 bool CanDispatchEvent(const PlatformEvent& event) override; |
| 32 uint32_t DispatchEvent(const PlatformEvent& event) override; | 32 uint32_t DispatchEvent(const PlatformEvent& event) override; |
| (...skipping 12 matching lines...) Expand all Loading... |
| 45 | 45 |
| 46 base::TimeTicks startup_time_; | 46 base::TimeTicks startup_time_; |
| 47 | 47 |
| 48 std::unique_ptr<base::TickClock> tick_clock_; | 48 std::unique_ptr<base::TickClock> tick_clock_; |
| 49 | 49 |
| 50 DISALLOW_COPY_AND_ASSIGN(NativeDisplayEventDispatcherX11); | 50 DISALLOW_COPY_AND_ASSIGN(NativeDisplayEventDispatcherX11); |
| 51 }; | 51 }; |
| 52 | 52 |
| 53 } // namespace ui | 53 } // namespace ui |
| 54 | 54 |
| 55 #endif // UI_DISPLAY_CHROMEOS_X11_NATIVE_DISPLAY_EVENT_DISPATCHER_X11_H_ | 55 #endif // UI_DISPLAY_MANAGER_CHROMEOS_X11_NATIVE_DISPLAY_EVENT_DISPATCHER_X11_H
_ |
| OLD | NEW |