| Index: content/renderer/render_view_impl.h
|
| diff --git a/content/renderer/render_view_impl.h b/content/renderer/render_view_impl.h
|
| index 85695d0fda1cb18874491b63e675d942ddeacb38..190effc4eed81108ec893b297951670f81f94db0 100644
|
| --- a/content/renderer/render_view_impl.h
|
| +++ b/content/renderer/render_view_impl.h
|
| @@ -381,8 +381,6 @@ class CONTENT_EXPORT RenderViewImpl
|
| gfx::RectF ElementBoundsInWindow(const blink::WebElement& element) override;
|
| bool HasAddedInputHandler() const override;
|
|
|
| - gfx::Point ConvertWindowPointToViewport(const gfx::Point& point);
|
| -
|
| 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
|
| @@ -536,22 +534,6 @@ class CONTENT_EXPORT RenderViewImpl
|
| const gfx::Point& screen_point,
|
| blink::WebDragOperation drag_operation);
|
| void OnDragSourceSystemDragEnded();
|
| - void OnDragTargetDrop(const DropData& drop_data,
|
| - const gfx::Point& client_pt,
|
| - const gfx::Point& screen_pt,
|
| - int key_modifiers);
|
| - // Real data that is dragged is not included at DragEnter time.
|
| - void OnDragTargetDragEnter(
|
| - const std::vector<DropData::Metadata>& drop_meta_data,
|
| - const gfx::Point& client_pt,
|
| - const gfx::Point& screen_pt,
|
| - blink::WebDragOperationsMask operations_allowed,
|
| - int key_modifiers);
|
| - void OnDragTargetDragLeave();
|
| - void OnDragTargetDragOver(const gfx::Point& client_pt,
|
| - const gfx::Point& screen_pt,
|
| - blink::WebDragOperationsMask operations_allowed,
|
| - int key_modifiers);
|
| void OnEnablePreferredSizeChangedMode();
|
| void OnEnableAutoResize(const gfx::Size& min_size, const gfx::Size& max_size);
|
| void OnDisableAutoResize(const gfx::Size& new_size);
|
|
|