diff options
author | afakhry <afakhry@chromium.org> | 2014-12-09 16:19:28 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-12-10 00:19:56 +0000 |
commit | 8a7b35a069e1133fa3d51fb344b750a90bd21f5d (patch) | |
tree | 1487b9bea4d6b1b6cf2f50c4f23b4589396d5c6c /ash/focus_cycler.cc | |
parent | 4ae97b7b61308ab58413c135b4ed70955b698335 (diff) | |
download | chromium_src-8a7b35a069e1133fa3d51fb344b750a90bd21f5d.zip chromium_src-8a7b35a069e1133fa3d51fb344b750a90bd21f5d.tar.gz chromium_src-8a7b35a069e1133fa3d51fb344b750a90bd21f5d.tar.bz2 |
Cleaning up MruWindowTracker::BuildWindowList()
Removing the top_most_at_end parameter which was always set to false and
was never used.
The previous CL (https://codereview.chromium.org/752253002) was reverted as it caused ash_unittests to fail on Windows:
http://build.chromium.org/p/chromium.win/builders/Win7%20Tests%20(dbg)(1)
http://build.chromium.org/p/chromium.win/builders/Win8%20Aura
This is a retry, but we keep reversing the windows list after we build it.
R=oshima@chromium.org
BUG=None
Review URL: https://codereview.chromium.org/785273002
Cr-Commit-Position: refs/heads/master@{#307593}
Diffstat (limited to 'ash/focus_cycler.cc')
-rw-r--r-- | ash/focus_cycler.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ash/focus_cycler.cc b/ash/focus_cycler.cc index b0d6d4d..2ccf256 100644 --- a/ash/focus_cycler.cc +++ b/ash/focus_cycler.cc @@ -19,7 +19,7 @@ namespace ash { namespace { bool HasFocusableWindow() { - return !MruWindowTracker::BuildWindowList(false).empty(); + return !MruWindowTracker::BuildWindowList().empty(); } } // namespace |