| Index: ash/wm/overview/window_selector.cc
|
| diff --git a/ash/wm/overview/window_selector.cc b/ash/wm/overview/window_selector.cc
|
| index e23f5b3126e2a2ccf0bd312c3fd70c9a51bc36f8..a7c4ce7c7c48ca00d235442307d84e89ed6e1b63 100644
|
| --- a/ash/wm/overview/window_selector.cc
|
| +++ b/ash/wm/overview/window_selector.cc
|
| @@ -73,7 +73,7 @@ struct WindowSelectorItemComparator
|
| // A comparator for locating a selector item for a given root.
|
| struct WindowSelectorItemForRoot
|
| : public std::unary_function<WindowSelectorItem*, bool> {
|
| - explicit WindowSelectorItemForRoot(const aura::RootWindow* root)
|
| + explicit WindowSelectorItemForRoot(const aura::Window* root)
|
| : root_window(root) {
|
| }
|
|
|
| @@ -81,7 +81,7 @@ struct WindowSelectorItemForRoot
|
| return item->GetRootWindow() == root_window;
|
| }
|
|
|
| - const aura::RootWindow* root_window;
|
| + const aura::Window* root_window;
|
| };
|
|
|
| // Filter to watch for the termination of a keyboard gesture to cycle through
|
|
|