| Index: chrome/browser/ui/search/instant_extended_interactive_uitest.cc
|
| diff --git a/chrome/browser/ui/search/instant_extended_interactive_uitest.cc b/chrome/browser/ui/search/instant_extended_interactive_uitest.cc
|
| index 6ec822ac556e1657045adb645338628399c89f3f..053cab691f311ba19ee01337430f883e43e4aaeb 100644
|
| --- a/chrome/browser/ui/search/instant_extended_interactive_uitest.cc
|
| +++ b/chrome/browser/ui/search/instant_extended_interactive_uitest.cc
|
| @@ -93,7 +93,7 @@ class QuittingHistoryDBTask : public history::HistoryDBTask {
|
| }
|
|
|
| virtual void DoneRunOnMainThread() OVERRIDE {
|
| - MessageLoop::current()->Quit();
|
| + base::MessageLoop::current()->Quit();
|
| }
|
|
|
| private:
|
| @@ -199,11 +199,11 @@ class InstantExtendedTest : public InProcessBrowserTest,
|
| HistoryService* history = HistoryServiceFactory::GetForProfile(
|
| browser()->profile(), Profile::EXPLICIT_ACCESS);
|
| DCHECK(history);
|
| - DCHECK(MessageLoop::current());
|
| + DCHECK(base::MessageLoop::current());
|
|
|
| CancelableRequestConsumer consumer;
|
| history->ScheduleDBTask(new QuittingHistoryDBTask(), &consumer);
|
| - MessageLoop::current()->Run();
|
| + base::MessageLoop::current()->Run();
|
| }
|
|
|
| int CountSearchProviderSuggestions() {
|
|
|