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..3ec174ab84de34be483d6e7828b05e059b48a900 100644 |
--- a/content/public/browser/host_zoom_map.h |
+++ b/content/public/browser/host_zoom_map.h |
@@ -78,6 +78,13 @@ class HostZoomMap { |
const std::string& scheme, |
const std::string& host) const = 0; |
+ // 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 only be called on any thread. |
Fady Samuel
2014/06/10 20:05:14
Remove only.
wjmaclean
2014/06/10 20:18:54
Done.
|
virtual ZoomLevelVector GetAllZoomLevels() const = 0; |
@@ -102,13 +109,36 @@ class HostZoomMap { |
const std::string& host, |
double level) = 0; |
+ // Returns whether the view manages its zoom level independently of other tabs |
+ // 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; |
+ |
+ // Notify a particular render view to change its zoom level. |
+ virtual void SendTemporaryZoomLevelChange(int render_process_id, |
+ int render_view_id) const = 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; |
// Add and remove zoom level changed callbacks. |
virtual scoped_ptr<Subscription> AddZoomLevelChangedCallback( |
const ZoomLevelChangedCallback& callback) = 0; |