Index: content/renderer/render_view_impl.h |
diff --git a/content/renderer/render_view_impl.h b/content/renderer/render_view_impl.h |
index 8e5057e0e849a9b7a3da8eb9445fc045111c4879..f4a34d35905b922bb81259037f01a08d33199a40 100644 |
--- a/content/renderer/render_view_impl.h |
+++ b/content/renderer/render_view_impl.h |
@@ -448,6 +448,9 @@ class CONTENT_EXPORT RenderViewImpl |
gfx::Point ConvertWindowPointToViewport(const gfx::Point& point); |
+ void set_uses_temporary_zoom_level(bool is_temporary) { |
+ uses_temporary_zoom_level_ = is_temporary; |
+ } |
bool uses_temporary_zoom_level() const { return uses_temporary_zoom_level_; } |
// Please do not add your stuff randomly to the end here. If there is an |
@@ -667,7 +670,6 @@ class CONTENT_EXPORT RenderViewImpl |
void OnSetRendererPrefs(const RendererPreferences& renderer_prefs); |
void OnSetWebUIProperty(const std::string& name, const std::string& value); |
void OnSetZoomLevelForLoadingURL(const GURL& url, double zoom_level); |
- void OnSetZoomLevelForView(bool uses_temporary_zoom_level, double level); |
void OnSuppressDialogsUntilSwapOut(); |
void OnThemeChanged(); |
void OnUpdateTargetURLAck(); |