| 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 918303d2858c744156d79076c8d9cd38aaa9db3e..cdcb1527c7b425a506e4b3922b85cea7ca5aed57 100644
|
| --- a/chrome/browser/ui/views/frame/browser_view.cc
|
| +++ b/chrome/browser/ui/views/frame/browser_view.cc
|
| @@ -698,16 +698,17 @@ void BrowserView::SetStarredState(bool is_starred) {
|
| GetLocationBarView()->SetStarToggled(is_starred);
|
| }
|
|
|
| -void BrowserView::SetZoomIconState(ZoomController::ZoomIconState state) {
|
| - // TODO(khorimoto): Implement this.
|
| +void BrowserView::SetZoomIconState(
|
| + ZoomController::ZoomIconState zoom_icon_state) {
|
| + GetLocationBarView()->SetZoomIconState(zoom_icon_state);
|
| }
|
|
|
| void BrowserView::SetZoomIconTooltipPercent(int zoom_percent) {
|
| - // TODO(khorimoto): Implement this.
|
| + GetLocationBarView()->SetZoomIconTooltipPercent(zoom_percent);
|
| }
|
|
|
| void BrowserView::ShowZoomBubble(int zoom_percent) {
|
| - // TODO(khorimoto): Implement this.
|
| + GetLocationBarView()->ShowZoomBubble(zoom_percent);
|
| }
|
|
|
| gfx::Rect BrowserView::GetRestoredBounds() const {
|
|
|