| Index: chrome/browser/ui/views/extensions/extension_installed_bubble.cc
|
| diff --git a/chrome/browser/ui/views/extensions/extension_installed_bubble.cc b/chrome/browser/ui/views/extensions/extension_installed_bubble.cc
|
| index c1dca2895c477c016f1694b6baba99ecec045ae1..0384c9a873942fae1b26ead7b507b6988f60a658 100644
|
| --- a/chrome/browser/ui/views/extensions/extension_installed_bubble.cc
|
| +++ b/chrome/browser/ui/views/extensions/extension_installed_bubble.cc
|
| @@ -578,7 +578,7 @@ void ExtensionInstalledBubble::Observe(
|
| if (extension == extension_) {
|
| animation_wait_retries_ = 0;
|
| // PostTask to ourself to allow all EXTENSION_LOADED Observers to run.
|
| - MessageLoopForUI::current()->PostTask(
|
| + base::MessageLoopForUI::current()->PostTask(
|
| FROM_HERE,
|
| base::Bind(&ExtensionInstalledBubble::ShowInternal,
|
| weak_factory_.GetWeakPtr()));
|
| @@ -608,7 +608,7 @@ void ExtensionInstalledBubble::ShowInternal() {
|
| animation_wait_retries_++ < kAnimationWaitMaxRetry) {
|
| // We don't know where the view will be until the container has stopped
|
| // animating, so check back in a little while.
|
| - MessageLoopForUI::current()->PostDelayedTask(
|
| + base::MessageLoopForUI::current()->PostDelayedTask(
|
| FROM_HERE,
|
| base::Bind(&ExtensionInstalledBubble::ShowInternal,
|
| weak_factory_.GetWeakPtr()),
|
|
|