summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/views/location_bar/zoom_view.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/ui/views/location_bar/zoom_view.h')
-rw-r--r--chrome/browser/ui/views/location_bar/zoom_view.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/chrome/browser/ui/views/location_bar/zoom_view.h b/chrome/browser/ui/views/location_bar/zoom_view.h
index bc3876d..0bac5d2 100644
--- a/chrome/browser/ui/views/location_bar/zoom_view.h
+++ b/chrome/browser/ui/views/location_bar/zoom_view.h
@@ -10,7 +10,6 @@
#include "chrome/browser/ui/views/location_bar/location_bar_view.h"
#include "ui/views/controls/image_view.h"
-class ToolbarModel;
class ZoomController;
// View for the zoom icon in the Omnibox.
@@ -21,8 +20,7 @@ class ZoomView : public views::ImageView {
// tabs, it cannot be provided in the constructor. Instead, a
// LocationBarView::Delegate is passed here so that it can be queried for the
// current WebContents as needed.
- ZoomView(ToolbarModel* toolbar_model,
- LocationBarView::Delegate* location_bar_delegate);
+ explicit ZoomView(LocationBarView::Delegate* location_bar_delegate);
virtual ~ZoomView();
// Updates the image and its tooltip appropriately, hiding or showing the icon
@@ -45,9 +43,6 @@ class ZoomView : public views::ImageView {
// widget.
void ActivateBubble();
- // Toolbar model used to test whether location bar input is in progress.
- ToolbarModel* toolbar_model_;
-
// The delegate used to get the currently visible WebContents.
LocationBarView::Delegate* location_bar_delegate_;