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

Unified Diff: ui/views/mus/screen_mus_delegate.h

Issue 2463753003: Changes ScreenMusDelegate::GetWindowAtScreenPoint to return aura::Window (Closed)
Patch Set: Created 4 years, 1 month 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 | « ui/views/mus/screen_mus.cc ('k') | ui/views/mus/test_utils.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/mus/screen_mus_delegate.h
diff --git a/ui/views/mus/screen_mus_delegate.h b/ui/views/mus/screen_mus_delegate.h
index cdba900ebb08b30538447eb0cf230f93cac22675..b8859caaa8ba8aad29662405fb11319028c76a32 100644
--- a/ui/views/mus/screen_mus_delegate.h
+++ b/ui/views/mus/screen_mus_delegate.h
@@ -7,12 +7,12 @@
#include "ui/views/mus/mus_export.h"
-namespace gfx {
-class Point;
+namespace aura {
+class Window;
}
-namespace ui {
-class Window;
+namespace gfx {
+class Point;
}
namespace views {
@@ -24,7 +24,7 @@ class VIEWS_MUS_EXPORT ScreenMusDelegate {
virtual gfx::Point GetCursorScreenPoint() = 0;
- virtual ui::Window* GetWindowAtScreenPoint(const gfx::Point& point) = 0;
+ virtual aura::Window* GetWindowAtScreenPoint(const gfx::Point& point) = 0;
protected:
virtual ~ScreenMusDelegate() {}
« no previous file with comments | « ui/views/mus/screen_mus.cc ('k') | ui/views/mus/test_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698