| 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 50af86d9340b99d6d9a39c524ba598baf8d10dca..9f416c9a4fbc9ebd7c5c342d526f4a99398e573a 100644
|
| --- a/chrome/browser/ui/views/frame/browser_view.cc
|
| +++ b/chrome/browser/ui/views/frame/browser_view.cc
|
| @@ -698,17 +698,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 {
|
|
|