| Index: chrome/browser/ui/auto_login_infobar_delegate.cc
|
| diff --git a/chrome/browser/ui/auto_login_infobar_delegate.cc b/chrome/browser/ui/auto_login_infobar_delegate.cc
|
| index f59d2986203e594a72317ff3faa3c3c9f565d3f5..b60a9f989f31d1a8d6e43e727e97864461067249 100644
|
| --- a/chrome/browser/ui/auto_login_infobar_delegate.cc
|
| +++ b/chrome/browser/ui/auto_login_infobar_delegate.cc
|
| @@ -109,18 +109,18 @@ void AutoLoginRedirector::Observe(int type,
|
| // The WebContents that started this has been destroyed. The request must be
|
| // cancelled and this object must be deleted.
|
| ubertoken_fetcher_.reset();
|
| - MessageLoop::current()->DeleteSoon(FROM_HERE, this);
|
| + base::MessageLoop::current()->DeleteSoon(FROM_HERE, this);
|
| }
|
|
|
| void AutoLoginRedirector::OnUbertokenSuccess(const std::string& token) {
|
| RedirectToMergeSession(token);
|
| - MessageLoop::current()->DeleteSoon(FROM_HERE, this);
|
| + base::MessageLoop::current()->DeleteSoon(FROM_HERE, this);
|
| }
|
|
|
| void AutoLoginRedirector::OnUbertokenFailure(
|
| const GoogleServiceAuthError& error) {
|
| LOG(WARNING) << "AutoLoginRedirector: token request failed";
|
| - MessageLoop::current()->DeleteSoon(FROM_HERE, this);
|
| + base::MessageLoop::current()->DeleteSoon(FROM_HERE, this);
|
| }
|
|
|
| void AutoLoginRedirector::RedirectToMergeSession(const std::string& token) {
|
|
|