| Index: chrome/browser/google/google_url_tracker_unittest.cc
|
| diff --git a/chrome/browser/google/google_url_tracker_unittest.cc b/chrome/browser/google/google_url_tracker_unittest.cc
|
| index 7d6df996f09f9a9269de1c831338decdb30535d6..d209083f1a04794cbc803f11000d652fa437137b 100644
|
| --- a/chrome/browser/google/google_url_tracker_unittest.cc
|
| +++ b/chrome/browser/google/google_url_tracker_unittest.cc
|
| @@ -249,7 +249,7 @@ class GoogleURLTrackerTest : public testing::Test {
|
|
|
| // These are required by the TestURLFetchers GoogleURLTracker will create (see
|
| // test_url_fetcher_factory.h).
|
| - MessageLoop message_loop_;
|
| + base::MessageLoop message_loop_;
|
| content::TestBrowserThread io_thread_;
|
| // Creating this allows us to call
|
| // net::NetworkChangeNotifier::NotifyObserversOfIPAddressChangeForTests().
|
| @@ -283,7 +283,7 @@ void GoogleURLTrackerTest::OnInfoBarClosed(InfoBarDelegate* infobar,
|
| }
|
|
|
| GoogleURLTrackerTest::GoogleURLTrackerTest()
|
| - : message_loop_(MessageLoop::TYPE_IO),
|
| + : message_loop_(base::MessageLoop::TYPE_IO),
|
| io_thread_(content::BrowserThread::IO, &message_loop_) {
|
| GoogleURLTrackerFactory::GetInstance()->RegisterUserPrefsOnProfile(&profile_);
|
| }
|
| @@ -350,7 +350,7 @@ void GoogleURLTrackerTest::NotifyIPAddressChanged() {
|
| net::NetworkChangeNotifier::NotifyObserversOfIPAddressChangeForTests();
|
| // For thread safety, the NCN queues tasks to do the actual notifications, so
|
| // we need to spin the message loop so the tracker will actually be notified.
|
| - MessageLoop::current()->RunUntilIdle();
|
| + base::MessageLoop::current()->RunUntilIdle();
|
| }
|
|
|
| void GoogleURLTrackerTest::SetLastPromptedGoogleURL(const GURL& url) {
|
|
|