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

Unified Diff: ui/aura/test/aura_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/aura/test/aura_test_base.h ('k') | ui/aura/test/aura_test_helper.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/aura/test/aura_test_base.cc
diff --git a/ui/aura/test/aura_test_base.cc b/ui/aura/test/aura_test_base.cc
index ec7eb95404989a790b6085df4008a41284fd34ed..53b9e363667207956b205de06466f3b2e90458b7 100644
--- a/ui/aura/test/aura_test_base.cc
+++ b/ui/aura/test/aura_test_base.cc
@@ -74,7 +74,7 @@ void AuraTestBase::SetUp() {
bool enable_pixel_output = false;
ui::InitializeContextFactoryForTests(enable_pixel_output);
- helper_.reset(new AuraTestHelper(&message_loop_));
+ helper_.reset(CreateHelper(&message_loop_));
helper_->SetUp();
}
@@ -119,5 +119,10 @@ bool AuraTestBase::DispatchEventUsingWindowDispatcher(ui::Event* event) {
return event->handled();
}
+AuraTestHelper* AuraTestBase::CreateHelper(
+ base::MessageLoopForUI* message_loop) {
+ return new AuraTestHelper(message_loop);
+}
+
} // namespace test
} // namespace aura
« no previous file with comments | « ui/aura/test/aura_test_base.h ('k') | ui/aura/test/aura_test_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698