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

Unified Diff: ui/display/manager/chromeos/x11/native_display_event_dispatcher_x11.h

Issue 2613493002: Fix namespace for src/ui/display/. (Closed)
Patch Set: Rebase. Created 3 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
Index: ui/display/manager/chromeos/x11/native_display_event_dispatcher_x11.h
diff --git a/ui/display/manager/chromeos/x11/native_display_event_dispatcher_x11.h b/ui/display/manager/chromeos/x11/native_display_event_dispatcher_x11.h
index 511c4225587dda3918713bee05ee42a1f566c07c..a25bfea12863ba08864d11fc06577ae8d539ef96 100644
--- a/ui/display/manager/chromeos/x11/native_display_event_dispatcher_x11.h
+++ b/ui/display/manager/chromeos/x11/native_display_event_dispatcher_x11.h
@@ -13,7 +13,7 @@
#include "ui/display/manager/chromeos/x11/native_display_delegate_x11.h"
#include "ui/events/platform/platform_event_dispatcher.h"
-namespace ui {
+namespace display {
// The implementation is interested in the cases of RRNotify events which
// correspond to output add/remove events. Note that Output add/remove events
@@ -28,8 +28,8 @@ class DISPLAY_MANAGER_EXPORT NativeDisplayEventDispatcherX11
~NativeDisplayEventDispatcherX11() override;
// ui::PlatformEventDispatcher:
- bool CanDispatchEvent(const PlatformEvent& event) override;
- uint32_t DispatchEvent(const PlatformEvent& event) override;
+ bool CanDispatchEvent(const ui::PlatformEvent& event) override;
+ uint32_t DispatchEvent(const ui::PlatformEvent& event) override;
void SetTickClockForTest(std::unique_ptr<base::TickClock> tick_clock);
@@ -50,6 +50,6 @@ class DISPLAY_MANAGER_EXPORT NativeDisplayEventDispatcherX11
DISALLOW_COPY_AND_ASSIGN(NativeDisplayEventDispatcherX11);
};
-} // namespace ui
+} // namespace display
#endif // UI_DISPLAY_MANAGER_CHROMEOS_X11_NATIVE_DISPLAY_EVENT_DISPATCHER_X11_H_

Powered by Google App Engine
This is Rietveld 408576698