| Index: ash/wm/mru_window_tracker.cc
|
| diff --git a/ash/wm/mru_window_tracker.cc b/ash/wm/mru_window_tracker.cc
|
| index 3049517a84b7690e0770f61a9e3b30af4514a0ae..c0fe9ebd34007f3247abd28b2d2605fa2069482e 100644
|
| --- a/ash/wm/mru_window_tracker.cc
|
| +++ b/ash/wm/mru_window_tracker.cc
|
| @@ -46,17 +46,6 @@ void AddDraggedWindows(aura::Window* root,
|
| }
|
| }
|
|
|
| -// Returns true if |window| is a container whose windows can be cycled to.
|
| -bool IsSwitchableContainer(aura::Window* window) {
|
| - if (!window)
|
| - return false;
|
| - for (size_t i = 0; i < kSwitchableWindowContainerIdsLength; ++i) {
|
| - if (window->id() == kSwitchableWindowContainerIds[i])
|
| - return true;
|
| - }
|
| - return false;
|
| -}
|
| -
|
| // Returns whether |w1| should be considered less recently used than |w2|. This
|
| // is used for a stable sort to move minimized windows to the LRU end of the
|
| // list.
|
|
|