Index: chrome/browser/automation/url_request_automation_job.cc |
diff --git a/chrome/browser/automation/url_request_automation_job.cc b/chrome/browser/automation/url_request_automation_job.cc |
index a9ff3573436f47a6e00cdea940707d59a59ef2d4..0aa2b3445fa155db09d08574c85c9221c33c63b6 100644 |
--- a/chrome/browser/automation/url_request_automation_job.cc |
+++ b/chrome/browser/automation/url_request_automation_job.cc |
@@ -173,7 +173,7 @@ void URLRequestAutomationJob::Start() { |
if (!is_pending()) { |
// Start reading asynchronously so that all error reporting and data |
// callbacks happen as they would for network requests. |
- MessageLoop::current()->PostTask( |
+ base::MessageLoop::current()->PostTask( |
FROM_HERE, |
base::Bind(&URLRequestAutomationJob::StartAsync, |
weak_factory_.GetWeakPtr())); |
@@ -212,7 +212,7 @@ bool URLRequestAutomationJob::ReadRawData( |
message_filter_->Send(new AutomationMsg_RequestRead(tab_, id_, buf_size)); |
SetStatus(net::URLRequestStatus(net::URLRequestStatus::IO_PENDING, 0)); |
} else { |
- MessageLoop::current()->PostTask( |
+ base::MessageLoop::current()->PostTask( |
FROM_HERE, |
base::Bind(&URLRequestAutomationJob::NotifyJobCompletionTask, |
weak_factory_.GetWeakPtr())); |