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

Unified Diff: ui/aura/test/aura_test_helper.h

Issue 13243003: Move MessageLoop to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/aura/test/aura_test_helper.h
diff --git a/ui/aura/test/aura_test_helper.h b/ui/aura/test/aura_test_helper.h
index 6a44592f43f988c057a510488bad9765fb9a7317..7ffc3f9024b850627631e4f75e7c961bc360548d 100644
--- a/ui/aura/test/aura_test_helper.h
+++ b/ui/aura/test/aura_test_helper.h
@@ -8,7 +8,9 @@
#include "base/basictypes.h"
#include "base/memory/scoped_ptr.h"
+namespace base {
class MessageLoopForUI;
+}
namespace ui {
class InputMethod;
@@ -31,7 +33,7 @@ class TestStackingClient;
// that are necessary to run test on Aura.
class AuraTestHelper {
public:
- explicit AuraTestHelper(MessageLoopForUI* message_loop);
+ explicit AuraTestHelper(base::MessageLoopForUI* message_loop);
~AuraTestHelper();
// Creates and initializes (shows and sizes) the RootWindow for use in tests.
@@ -49,7 +51,7 @@ class AuraTestHelper {
TestScreen* test_screen() { return test_screen_.get(); }
private:
- MessageLoopForUI* message_loop_;
+ base::MessageLoopForUI* message_loop_;
bool setup_called_;
bool teardown_called_;
bool owns_root_window_;
« no previous file with comments | « ui/aura/test/aura_test_base.h ('k') | ui/aura/test/aura_test_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698