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

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

Issue 209383003: Move wm/public into wm target (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/wm_test_base.h ('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/wm_test_base.cc
diff --git a/ui/wm/test/wm_test_base.cc b/ui/wm/test/wm_test_base.cc
new file mode 100644
index 0000000000000000000000000000000000000000..5279605eeca4a8cd39e67d5ff421e27a4677da8d
--- /dev/null
+++ b/ui/wm/test/wm_test_base.cc
@@ -0,0 +1,30 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "ui/wm/test/wm_test_base.h"
+
+#include "ui/wm/test/wm_test_helper.h"
+
+namespace wm {
+
+////////////////////////////////////////////////////////////////////////////////
+// WMTestBase, public:
+
+WMTestBase::WMTestBase() {
+}
+
+WMTestBase::~WMTestBase() {
+}
+
+////////////////////////////////////////////////////////////////////////////////
+// WMTestBase, aura::test::AuraTestBase overrides:
+
+aura::test::AuraTestHelper* WMTestBase::CreateHelper(
+ base::MessageLoopForUI* message_loop) {
+ // TODO(beng): clean up construction of these test helpers. |message_loop| in
+ // practice is always the same loop so we don't need to pass it thru.
+ return new WMTestHelper;
+}
+
+} // namespace wm
« no previous file with comments | « ui/wm/test/wm_test_base.h ('k') | ui/wm/test/wm_test_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698