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

Unified Diff: ui/wm/test/run_all_unittests.cc

Issue 196063002: Move wm/core to wm namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 9 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
« no previous file with comments | « ui/wm/test/DEPS ('k') | ui/wm/test/wm_test_helper.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/wm/test/run_all_unittests.cc
diff --git a/ui/keyboard/test/run_all_unittests.cc b/ui/wm/test/run_all_unittests.cc
similarity index 76%
copy from ui/keyboard/test/run_all_unittests.cc
copy to ui/wm/test/run_all_unittests.cc
index d5e5bc03f6aba97e7e9a6cf955d0fe0d28bea12f..d399ca13ff8d35e186b4a0129091ee35e5ac2f81 100644
--- a/ui/keyboard/test/run_all_unittests.cc
+++ b/ui/wm/test/run_all_unittests.cc
@@ -12,11 +12,9 @@
#include "ui/base/ui_base_paths.h"
#include "ui/gl/gl_surface.h"
-namespace {
-
-class KeyboardTestSuite : public base::TestSuite {
+class WMTestSuite : public base::TestSuite {
public:
- KeyboardTestSuite(int argc, char** argv) : base::TestSuite(argc, argv) {}
+ WMTestSuite(int argc, char** argv) : base::TestSuite(argc, argv) {}
protected:
virtual void Initialize() OVERRIDE {
@@ -39,16 +37,12 @@ class KeyboardTestSuite : public base::TestSuite {
}
private:
- DISALLOW_COPY_AND_ASSIGN(KeyboardTestSuite);
+ DISALLOW_COPY_AND_ASSIGN(WMTestSuite);
};
-} // namespace
-
int main(int argc, char** argv) {
- KeyboardTestSuite test_suite(argc, argv);
+ WMTestSuite test_suite(argc, argv);
return base::LaunchUnitTests(
- argc,
- argv,
- base::Bind(&KeyboardTestSuite::Run, base::Unretained(&test_suite)));
+ argc, argv, base::Bind(&WMTestSuite::Run, base::Unretained(&test_suite)));
}
« no previous file with comments | « ui/wm/test/DEPS ('k') | ui/wm/test/wm_test_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698