| Index: chrome/browser/ui/gtk/location_bar_view_gtk.cc
|
| diff --git a/chrome/browser/ui/gtk/location_bar_view_gtk.cc b/chrome/browser/ui/gtk/location_bar_view_gtk.cc
|
| index 56cd93f320748224c3ee50c9c85512aea1790038..c774c18f96eb0fab0d04f3578e2cfa3fb91f0008 100644
|
| --- a/chrome/browser/ui/gtk/location_bar_view_gtk.cc
|
| +++ b/chrome/browser/ui/gtk/location_bar_view_gtk.cc
|
| @@ -264,7 +264,7 @@ void ContentSettingImageViewGtk::Update(WebContents* web_contents) {
|
| void ContentSettingImageViewGtk::AnimationEnded(
|
| const ui::Animation* animation) {
|
| if (animation_.IsShowing()) {
|
| - MessageLoop::current()->PostDelayedTask(
|
| + base::MessageLoop::current()->PostDelayedTask(
|
| FROM_HERE,
|
| base::Bind(&ContentSettingImageViewGtk::CloseAnimation,
|
| weak_factory_.GetWeakPtr()),
|
| @@ -841,7 +841,7 @@ InstantController* LocationBarViewGtk::GetInstant() {
|
| void LocationBarViewGtk::ShowFirstRunBubble() {
|
| // We need the browser window to be shown before we can show the bubble, but
|
| // we get called before that's happened.
|
| - MessageLoop::current()->PostTask(
|
| + base::MessageLoop::current()->PostTask(
|
| FROM_HERE,
|
| base::Bind(&LocationBarViewGtk::ShowFirstRunBubbleInternal,
|
| weak_ptr_factory_.GetWeakPtr()));
|
|
|