| Index: chrome/browser/ui/views/frame/browser_view.cc
|
| diff --git a/chrome/browser/ui/views/frame/browser_view.cc b/chrome/browser/ui/views/frame/browser_view.cc
|
| index 78e1e0b8a4b657d796b3cd18e0293a6ed10014de..02644c936ba1324c07a92e30c7925a7556b09b86 100644
|
| --- a/chrome/browser/ui/views/frame/browser_view.cc
|
| +++ b/chrome/browser/ui/views/frame/browser_view.cc
|
| @@ -686,17 +686,8 @@ void BrowserView::SetStarredState(bool is_starred) {
|
| GetLocationBarView()->SetStarToggled(is_starred);
|
| }
|
|
|
| -void BrowserView::SetZoomIconState(
|
| - ZoomController::ZoomIconState zoom_icon_state) {
|
| - GetLocationBarView()->SetZoomIconState(zoom_icon_state);
|
| -}
|
| -
|
| -void BrowserView::SetZoomIconTooltipPercent(int zoom_percent) {
|
| - GetLocationBarView()->SetZoomIconTooltipPercent(zoom_percent);
|
| -}
|
| -
|
| -void BrowserView::ShowZoomBubble(int zoom_percent) {
|
| - GetLocationBarView()->ShowZoomBubble(zoom_percent);
|
| +void BrowserView::ZoomChangedForActiveTab(bool can_show_bubble) {
|
| + GetLocationBarView()->ZoomChangedForActiveTab(can_show_bubble);
|
| }
|
|
|
| gfx::Rect BrowserView::GetRestoredBounds() const {
|
|
|