Index: content/renderer/render_view_impl.h |
diff --git a/content/renderer/render_view_impl.h b/content/renderer/render_view_impl.h |
index b5bbee0cf84aa2ab09c90efeff03219a38a28818..d06f0ade6d7d8a0750a0f38e243c60feb694b671 100644 |
--- a/content/renderer/render_view_impl.h |
+++ b/content/renderer/render_view_impl.h |
@@ -399,6 +399,7 @@ class CONTENT_EXPORT RenderViewImpl |
virtual blink::WebSpeechRecognizer* speechRecognizer(); |
virtual void zoomLimitsChanged(double minimum_level, double maximum_level); |
virtual void zoomLevelChanged(); |
+ virtual void pageScaleFactorChanged(); |
virtual double zoomLevelToZoomFactor(double zoom_level) const; |
virtual double zoomFactorToZoomLevel(double factor) const; |
virtual void registerProtocolHandler(const blink::WebString& scheme, |
@@ -677,6 +678,7 @@ class CONTENT_EXPORT RenderViewImpl |
void OnThemeChanged(); |
void OnUpdateTargetURLAck(); |
void OnUpdateWebPreferences(const WebPreferences& prefs); |
+ void OnResetPageScale(); |
void OnZoom(PageZoom zoom); |
void OnEnableViewSourceMode(); |
void OnWindowSnapshotCompleted(const int snapshot_id, |
@@ -1037,6 +1039,8 @@ class CONTENT_EXPORT RenderViewImpl |
typedef std::map<cc::SharedBitmapId, cc::SharedBitmap*> BitmapMap; |
BitmapMap disambiguation_bitmaps_; |
+ bool page_scale_factor_is_one_; |
+ |
// --------------------------------------------------------------------------- |
// ADDING NEW DATA? Please see if it fits appropriately in one of the above |
// sections rather than throwing it randomly at the end. If you're adding a |