Index: content/browser/renderer_host/render_view_host.h |
diff --git a/content/browser/renderer_host/render_view_host.h b/content/browser/renderer_host/render_view_host.h |
index 17f560a3aa59c5e12e9ed301162968177e139fae..d5566c08de42779f0a61c265cd4637d0421353a8 100644 |
--- a/content/browser/renderer_host/render_view_host.h |
+++ b/content/browser/renderer_host/render_view_host.h |
@@ -430,6 +430,11 @@ class RenderViewHost : public RenderWidgetHost { |
void OnMsgOpenURL(const GURL& url, const GURL& referrer, |
WindowOpenDisposition disposition); |
void OnMsgDidContentsPreferredSizeChange(const gfx::Size& new_size); |
+ void OnMsgDidChangeScrollbarsForMainFrame(bool has_horizontal_scrollbar, |
+ bool has_vertical_scrollbar); |
+ void OnMsgDidChangeScrollOffsetPinningForMainFrame(bool is_pinned_to_left, |
+ bool is_pinned_to_right); |
+ void OnMsgDidChangeNumWheelEvents(int count); |
void OnMsgSelectionChanged(const std::string& text, const ui::Range& range, |
const gfx::Point& start, const gfx::Point& end); |
void OnMsgPasteFromSelectionClipboard(); |