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

Unified Diff: ui/aura/test/event_generator.h

Issue 37733003: Make GetRootWindow() return a Window instead of a RootWindow. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: First cut for review/trybots Created 7 years, 2 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/aura/test/event_generator.h
diff --git a/ui/aura/test/event_generator.h b/ui/aura/test/event_generator.h
index 5f93c5ca9eb99a9648889d3f2856d88aa8b2eac1..02659bb233bc7bfeea83a4c8a18ee09bab9d8b70 100644
--- a/ui/aura/test/event_generator.h
+++ b/ui/aura/test/event_generator.h
@@ -87,7 +87,7 @@ class EventGenerator {
public:
// Creates an EventGenerator with the mouse/touch location (0,0),
// which uses the |root_window|'s coordinates.
- explicit EventGenerator(RootWindow* root_window);
+ explicit EventGenerator(Window* root_window);
// Create an EventGenerator with EventGeneratorDelegate,
// which uses the coordinates used by |delegate|.
@@ -95,11 +95,11 @@ class EventGenerator {
// Creates an EventGenerator with the mouse/touch location
// at |initial_location|, which uses the |root_window|'s coordinates.
- EventGenerator(RootWindow* root_window, const gfx::Point& initial_location);
+ EventGenerator(Window* root_window, const gfx::Point& initial_location);
// Creates an EventGenerator with the mouse/touch location
// centered over |window|, which uses the |root_window|'s coordinates.
- EventGenerator(RootWindow* root_window, Window* window);
+ EventGenerator(Window* root_window, Window* window);
virtual ~EventGenerator();

Powered by Google App Engine
This is Rietveld 408576698