summaryrefslogtreecommitdiffstats
path: root/ui/aura_shell/run_all_unittests.cc
diff options
context:
space:
mode:
authorben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-10 20:26:47 +0000
committerben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-10 20:26:47 +0000
commit6377a003e5948a14cf79bf6433e4c89dbc9354e0 (patch)
treeb84cc5488c90e4b3ef85bba3f61a7613a2d4579d /ui/aura_shell/run_all_unittests.cc
parent90c5032fb8beef603812ac47769184ae526abaf8 (diff)
downloadchromium_src-6377a003e5948a14cf79bf6433e4c89dbc9354e0.zip
chromium_src-6377a003e5948a14cf79bf6433e4c89dbc9354e0.tar.gz
chromium_src-6377a003e5948a14cf79bf6433e4c89dbc9354e0.tar.bz2
Rid the world of TopLevelWindowContainer, and "toplevel" concept from Window entirely.
- Creates StackingController in aura_shell to manage stacking and implement aura::StackingClient. - Moves DesktopEventFilter to shell, since it's mostly shell-related anyway. - Move relevant tests to shell, requiring some refactoring to move test utils around. BUG=none TEST=none Review URL: http://codereview.chromium.org/8505049 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109492 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/aura_shell/run_all_unittests.cc')
-rw-r--r--ui/aura_shell/run_all_unittests.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/aura_shell/run_all_unittests.cc b/ui/aura_shell/run_all_unittests.cc
index 950d43b..9fa9c8a 100644
--- a/ui/aura_shell/run_all_unittests.cc
+++ b/ui/aura_shell/run_all_unittests.cc
@@ -5,5 +5,5 @@
#include "ui/aura_shell/test_suite.h"
int main(int argc, char** argv) {
- return AuraShellTestSuite(argc, argv).Run();
+ return aura_shell::test::AuraShellTestSuite(argc, argv).Run();
}