Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(421)

Side by Side Diff: chrome/browser/ui/zoom/zoom_event_manager.h

Issue 301733006: Zoom Extension API (chrome) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments: move ZoomObserver registration to TabsEventRouter. Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_UI_ZOOM_ZOOM_EVENT_MANAGER_H_
6 #define CHROME_BROWSER_UI_ZOOM_ZOOM_EVENT_MANAGER_H_
7
8 #include "base/callback_list.h"
9 #include "base/supports_user_data.h"
10 #include "content/public/browser/host_zoom_map.h"
11
12 namespace content {
13 class BrowserContext;
14 } // namespace content
15
16 // This class serves as a target for event notifications from all ZoomController
17 // objects. Classes that need to know about browser-specific zoom events (e.g.
18 // manual-mode zoom) should subscribe here.
19 class ZoomEventManager : public base::SupportsUserData::Data {
Dan Beam 2014/06/26 03:40:02 why not ZoomObserver?
wjmaclean 2014/06/26 15:30:31 This object never subscribes to ZoomObserver event
20 public:
21 ZoomEventManager();
22 virtual ~ZoomEventManager();
23
Dan Beam 2014/06/26 03:40:02 nit: doc comment (maybe when this would be NULL, i
wjmaclean 2014/06/26 15:30:31 Done.
24 static ZoomEventManager* GetForBrowserContext(
25 content::BrowserContext* context);
26
27 // Called by ZoomControllers when changes are made to zoom levels in manual
28 // mode in order that browser listeners can be notified.
29 void OnZoomLevelChanged(const content::HostZoomMap::ZoomLevelChange& change);
30
31 // Add and remove zoom level changed callbacks.
32 scoped_ptr<content::HostZoomMap::Subscription> AddZoomLevelChangedCallback(
33 const content::HostZoomMap::ZoomLevelChangedCallback& callback);
34
35 private:
36 base::CallbackList<void(const content::HostZoomMap::ZoomLevelChange&)>
37 zoom_level_changed_callbacks_;
38
39 DISALLOW_COPY_AND_ASSIGN(ZoomEventManager);
40 };
41
42 #endif // CHROME_BROWSER_UI_ZOOM_ZOOM_EVENT_MANAGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698