Chromium Code Reviews| Index: content/public/browser/host_zoom_map.h |
| diff --git a/content/public/browser/host_zoom_map.h b/content/public/browser/host_zoom_map.h |
| index e98e74e424ec5b5c4e7c5ec1f4807a1757ffcdef..445cb2b291313acab61480c48e89557e8ec65d1c 100644 |
| --- a/content/public/browser/host_zoom_map.h |
| +++ b/content/public/browser/host_zoom_map.h |
| @@ -78,7 +78,14 @@ class HostZoomMap { |
| const std::string& scheme, |
| const std::string& host) const = 0; |
| - // Returns all non-temporary zoom levels. Can only be called on any thread. |
| + // Returns true if the specified |scheme| and/or |host| has a zoom level |
| + // currently set. |
| + // |
| + // This may be called on any thread. |
| + virtual bool HasZoomLevel(const std::string& scheme, |
| + const std::string& host) const = 0; |
| + |
| + // Returns all non-temporary zoom levels. Can be called on any thread. |
| virtual ZoomLevelVector GetAllZoomLevels() const = 0; |
| // Here |host| is the host portion of URL, or (in the absence of a host) |
| @@ -102,13 +109,32 @@ class HostZoomMap { |
| const std::string& host, |
| double level) = 0; |
| + // Returns whether the view manages its zoom level independently of other tabs |
|
jam
2014/06/12 21:35:52
nit: s/tabs/views (content doesn't know about tabs
wjmaclean
2014/06/13 16:00:16
Done.
|
| + // displaying content from the same host. |
| + virtual bool UsesTemporaryZoomLevel(int render_process_id, |
| + int render_view_id) const = 0; |
| + |
| + // Sets the temporary zoom level that's only valid for the lifetime of this |
| + // WebContents. |
| + // |
| + // This should only be called on the UI thread. |
| + virtual void SetTemporaryZoomLevel(int render_process_id, |
| + int render_view_id, |
| + double level) = 0; |
| + |
| + // Clears the temporary zoom level stored for this WebContents. |
| + // |
| + // This should only be called on the UI thread. |
| + virtual void ClearTemporaryZoomLevel(int render_process_id, |
| + int render_view_id) = 0; |
| + |
| // Get/Set the default zoom level for pages that don't override it. |
| virtual double GetDefaultZoomLevel() const = 0; |
| virtual void SetDefaultZoomLevel(double level) = 0;; |
| typedef base::Callback<void(const ZoomLevelChange&)> ZoomLevelChangedCallback; |
| typedef base::CallbackList<void(const ZoomLevelChange&)>::Subscription |
| - Subscription; |
| + Subscription; |
|
wjmaclean
2014/06/13 16:00:16
Removing this accidental change also.
|
| // Add and remove zoom level changed callbacks. |
| virtual scoped_ptr<Subscription> AddZoomLevelChangedCallback( |
| const ZoomLevelChangedCallback& callback) = 0; |