Index: chrome/browser/ui/views/frame/browser_view.cc |
=================================================================== |
--- chrome/browser/ui/views/frame/browser_view.cc (revision 152086) |
+++ chrome/browser/ui/views/frame/browser_view.cc (working copy) |
@@ -686,10 +686,19 @@ |
GetLocationBarView()->SetStarToggled(is_starred); |
} |
-void BrowserView::ZoomChangedForActiveTab(bool can_show_bubble) { |
- GetLocationBarView()->ZoomChangedForActiveTab(can_show_bubble); |
+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); |
+} |
+ |
gfx::Rect BrowserView::GetRestoredBounds() const { |
return frame_->GetRestoredBounds(); |
} |