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

Unified Diff: chrome/browser/ui/search/instant_controller_unittest.cc

Issue 14113053: chrome: Use base::MessageLoop. (Part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase again Created 7 years, 7 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
Index: chrome/browser/ui/search/instant_controller_unittest.cc
diff --git a/chrome/browser/ui/search/instant_controller_unittest.cc b/chrome/browser/ui/search/instant_controller_unittest.cc
index cf70d141ea7e50beb93b9dae1d9a38a85ced9e31..fb2ddea54f813d69b6c352260c3aca90a20c081d 100644
--- a/chrome/browser/ui/search/instant_controller_unittest.cc
+++ b/chrome/browser/ui/search/instant_controller_unittest.cc
@@ -88,7 +88,7 @@ private:
class InstantControllerTest : public testing::Test {
public:
InstantControllerTest()
- : loop_(MessageLoop::TYPE_DEFAULT),
+ : loop_(base::MessageLoop::TYPE_DEFAULT),
instant_controller_(new TestableInstantController()) {
}
@@ -101,8 +101,8 @@ class InstantControllerTest : public testing::Test {
}
private:
- MessageLoop loop_;
- scoped_ptr<TestableInstantController> instant_controller_;
+ base::MessageLoop loop_;
+ scoped_ptr<TestableInstantController> instant_controller_;
};
TEST_F(InstantControllerTest, ShouldSwitchToLocalOverlayReturn) {

Powered by Google App Engine
This is Rietveld 408576698