| Index: chrome/browser/extensions/extension_service.cc
|
| diff --git a/chrome/browser/extensions/extension_service.cc b/chrome/browser/extensions/extension_service.cc
|
| index 820322c19035cbe85c2fd61fe040aff882eb3236..b8662bb4704f17226c474cf48ed01c93931c1197 100644
|
| --- a/chrome/browser/extensions/extension_service.cc
|
| +++ b/chrome/browser/extensions/extension_service.cc
|
| @@ -1964,7 +1964,7 @@ void ExtensionService::GarbageCollectExtensions() {
|
| // Don't garbage collect while there are pending installations, which may
|
| // be using the temporary installation directory. Try to garbage collect
|
| // again later.
|
| - MessageLoop::current()->PostDelayedTask(
|
| + base::MessageLoop::current()->PostDelayedTask(
|
| FROM_HERE,
|
| base::Bind(&ExtensionService::GarbageCollectExtensions, AsWeakPtr()),
|
| base::TimeDelta::FromSeconds(kGarbageCollectRetryDelay));
|
| @@ -2638,7 +2638,7 @@ void ExtensionService::Observe(int type,
|
| // at all, but never half-crashed. We do it in a PostTask so
|
| // that other handlers of this notification will still have
|
| // access to the Extension and ExtensionHost.
|
| - MessageLoop::current()->PostTask(
|
| + base::MessageLoop::current()->PostTask(
|
| FROM_HERE,
|
| base::Bind(
|
| &ExtensionService::TrackTerminatedExtension,
|
| @@ -2706,7 +2706,7 @@ void ExtensionService::Observe(int type,
|
| if (delayed_updates_for_idle_.Contains(extension_id)) {
|
| // We were waiting for this extension to become idle, it now might have,
|
| // so maybe finish installation.
|
| - MessageLoop::current()->PostDelayedTask(
|
| + base::MessageLoop::current()->PostDelayedTask(
|
| FROM_HERE,
|
| base::Bind(&ExtensionService::MaybeFinishDelayedInstallation,
|
| AsWeakPtr(), extension_id),
|
|
|