| Index: chrome/browser/captive_portal/captive_portal_browsertest.cc | 
| diff --git a/chrome/browser/captive_portal/captive_portal_browsertest.cc b/chrome/browser/captive_portal/captive_portal_browsertest.cc | 
| index 90ac2b984ff303d5dffb6c0af9e35773f7752513..91f1c05030c60c63711fef94b1a56550636c9307 100644 | 
| --- a/chrome/browser/captive_portal/captive_portal_browsertest.cc | 
| +++ b/chrome/browser/captive_portal/captive_portal_browsertest.cc | 
| @@ -289,8 +289,8 @@ void URLRequestTimeoutOnDemandJob::MaybeStopWaitingForJobsOnIOThread() { | 
| if (num_jobs_started_ >= num_jobs_to_wait_for_) { | 
| last_num_jobs_to_wait_for_ = num_jobs_to_wait_for_; | 
| num_jobs_to_wait_for_ = 0; | 
| -    BrowserThread::PostTask(BrowserThread::UI, FROM_HERE, | 
| -                            MessageLoop::QuitClosure()); | 
| +    BrowserThread::PostTask( | 
| +        BrowserThread::UI, FROM_HERE, base::MessageLoop::QuitClosure()); | 
| } | 
| } | 
|  | 
| @@ -579,7 +579,7 @@ void MultiNavigationObserver::Observe( | 
| if (waiting_for_navigation_ && | 
| num_navigations_to_wait_for_ == num_navigations_) { | 
| waiting_for_navigation_ = false; | 
| -    MessageLoopForUI::current()->Quit(); | 
| +    base::MessageLoopForUI::current()->Quit(); | 
| } | 
| } | 
|  | 
| @@ -668,7 +668,7 @@ void FailLoadsAfterLoginObserver::Observe( | 
| tabs_needing_navigation_.size() == | 
| tabs_navigated_to_final_destination_.size()) { | 
| waiting_for_navigation_ = false; | 
| -    MessageLoopForUI::current()->Quit(); | 
| +    base::MessageLoopForUI::current()->Quit(); | 
| } | 
| } | 
|  | 
| @@ -762,7 +762,7 @@ void CaptivePortalObserver::Observe( | 
| if (waiting_for_result_ && | 
| num_results_to_wait_for_ == num_results_received_) { | 
| waiting_for_result_ = false; | 
| -    MessageLoop::current()->Quit(); | 
| +    base::MessageLoop::current()->Quit(); | 
| } | 
| } | 
|  | 
|  |