| Index: chrome/browser/ui/views/location_bar/location_bar_view.cc
|
| diff --git a/chrome/browser/ui/views/location_bar/location_bar_view.cc b/chrome/browser/ui/views/location_bar/location_bar_view.cc
|
| index 9c850d6c4844459f11ed09435cfa3156e5910556..ee59f1810df80d6c187de363f216dcd40eb08c02 100644
|
| --- a/chrome/browser/ui/views/location_bar/location_bar_view.cc
|
| +++ b/chrome/browser/ui/views/location_bar/location_bar_view.cc
|
| @@ -102,7 +102,7 @@ namespace {
|
|
|
| Browser* GetBrowserFromDelegate(LocationBarView::Delegate* delegate) {
|
| WebContents* contents = delegate->GetWebContents();
|
| - return browser::FindBrowserWithWebContents(contents);
|
| + return chrome::FindBrowserWithWebContents(contents);
|
| }
|
|
|
| // Height of the location bar's round corner region.
|
| @@ -1226,7 +1226,7 @@ void LocationBarView::RefreshPageActionViews() {
|
| }
|
|
|
| if (!page_action_views_.empty() && contents) {
|
| - Browser* browser = browser::FindBrowserWithWebContents(contents);
|
| + Browser* browser = chrome::FindBrowserWithWebContents(contents);
|
| GURL url = chrome::GetActiveWebContents(browser)->GetURL();
|
|
|
| for (PageActionViews::const_iterator i(page_action_views_.begin());
|
|
|