| Index: chrome/browser/ui/browser.cc
|
| diff --git a/chrome/browser/ui/browser.cc b/chrome/browser/ui/browser.cc
|
| index 2f75474c10b9f81191bd04202b02cd8faf4c9552..b510b8ddda10bd4c544395a40daebddc78a04069 100644
|
| --- a/chrome/browser/ui/browser.cc
|
| +++ b/chrome/browser/ui/browser.cc
|
| @@ -1150,7 +1150,7 @@ void Browser::TabStripEmpty() {
|
| // Note: This will be called several times if TabStripEmpty is called several
|
| // times. This is because it does not close the window if tabs are
|
| // still present.
|
| - MessageLoop::current()->PostTask(
|
| + base::MessageLoop::current()->PostTask(
|
| FROM_HERE, base::Bind(&Browser::CloseFrame, weak_factory_.GetWeakPtr()));
|
|
|
| // Instant may have visible WebContents that need to be detached before the
|
| @@ -1898,7 +1898,7 @@ void Browser::ScheduleUIUpdate(const WebContents* source,
|
|
|
| if (!chrome_updater_factory_.HasWeakPtrs()) {
|
| // No task currently scheduled, start another.
|
| - MessageLoop::current()->PostDelayedTask(
|
| + base::MessageLoop::current()->PostDelayedTask(
|
| FROM_HERE,
|
| base::Bind(&Browser::ProcessPendingUIUpdates,
|
| chrome_updater_factory_.GetWeakPtr()),
|
|
|