Chromium Code Reviews| Index: chrome/browser/ui/zoom/zoom_controller.h |
| diff --git a/chrome/browser/ui/zoom/zoom_controller.h b/chrome/browser/ui/zoom/zoom_controller.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..661cfc000a5811639afc0c61fbbee8bc2a435667 |
| --- /dev/null |
| +++ b/chrome/browser/ui/zoom/zoom_controller.h |
| @@ -0,0 +1,73 @@ |
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CHROME_BROWSER_UI_ZOOM_ZOOM_CONTROLLER_H_ |
| +#define CHROME_BROWSER_UI_ZOOM_ZOOM_CONTROLLER_H_ |
| +#pragma once |
| + |
| +#include "base/basictypes.h" |
| +#include "base/compiler_specific.h" |
| +#include "chrome/browser/prefs/pref_member.h" |
| +#include "content/public/browser/notification_observer.h" |
| +#include "content/public/browser/notification_registrar.h" |
| +#include "content/public/browser/web_contents_observer.h" |
| + |
| +class TabContentsWrapper; |
| +class ZoomObserver; |
| + |
| +// Per-tab class to manage the Omnibox zoom icon. |
| +class ZoomController : public content::NotificationObserver, |
| + public content::WebContentsObserver { |
| + public: |
| + enum ZoomIconState { |
| + NONE = 0, |
| + ZOOM_PLUS_ICON, |
| + ZOOM_MINUS_ICON, |
| + }; |
| + |
| + explicit ZoomController(TabContentsWrapper* tab_contents); |
| + virtual ~ZoomController(); |
| + |
| + ZoomIconState zoom_icon_state() const { return zoom_icon_state_; } |
| + int zoom_percent() const { return zoom_percent_; } |
| + |
| + ZoomObserver* delegate() const { return delegate_; } |
| + void set_delegate(ZoomObserver* d) { delegate_ = d; } |
|
tfarina
2012/05/31 23:52:17
nit: set_observer, also please avoid abbreviations
Kyle Horimoto
2012/06/01 00:33:09
Done.
|
| + |
| + private: |
| + // content::WebContentsObserver overrides: |
| + virtual void DidNavigateMainFrame( |
| + const content::LoadCommittedDetails& details, |
| + const content::FrameNavigateParams& params) OVERRIDE; |
| + |
| + // content::NotificationObserver overrides: |
| + virtual void Observe(int type, |
| + const content::NotificationSource& source, |
| + const content::NotificationDetails& details) OVERRIDE; |
| + |
| + // Updates the zoom icon and zoom percentage based on current values and |
| + // notifies the delegate if changes have occurred. |
| + void UpdateState(); |
| + |
| + // The current zoom icon state. |
| + ZoomIconState zoom_icon_state_; |
| + |
| + // The current zoom percentage. |
| + int zoom_percent_; |
| + |
| + content::NotificationRegistrar registrar_; |
| + |
| + // Used to access the default zoom level preference. |
| + DoublePrefMember default_zoom_level_; |
| + |
| + // Owning TabContentsWrapper. |
| + TabContentsWrapper* tab_contents_wrapper_; |
| + |
| + // Delegate receiving notifications on state changes. |
|
tfarina
2012/05/31 23:52:17
nit: s/Delegate/Observer
|
| + ZoomObserver* delegate_; |
|
tfarina
2012/05/31 23:52:17
nit: s/delegate_/observer_
Kyle Horimoto
2012/06/01 00:33:09
Done.
|
| + |
| + DISALLOW_COPY_AND_ASSIGN(ZoomController); |
| +}; |
| + |
| +#endif // CHROME_BROWSER_UI_ZOOM_ZOOM_CONTROLLER_H_ |