| Index: content/browser/web_contents/web_contents_view_android.h
|
| diff --git a/content/browser/web_contents/web_contents_view_android.h b/content/browser/web_contents/web_contents_view_android.h
|
| index e371e371b8a063bf81a80e7aca34397b7e60a0e5..bc6961a1ac85f3a6e20da9a00d51b351b384e0d2 100644
|
| --- a/content/browser/web_contents/web_contents_view_android.h
|
| +++ b/content/browser/web_contents/web_contents_view_android.h
|
| @@ -96,6 +96,13 @@ class WebContentsViewAndroid : public WebContentsView,
|
| void GotFocus() override;
|
| void TakeFocus(bool reverse) override;
|
|
|
| + // ui::ViewClient implementation.
|
| + bool OnTouchEvent(const ui::MotionEventAndroid& event,
|
| + bool for_touch_handle) override;
|
| + bool OnDragEvent(const ui::DragEventAndroid& event) override;
|
| + void OnPhysicalBackingSizeChanged() override;
|
| +
|
| + private:
|
| void OnDragEntered(const std::vector<DropData::Metadata>& metadata,
|
| const gfx::Point& location,
|
| const gfx::Point& screen_location);
|
| @@ -107,12 +114,6 @@ class WebContentsViewAndroid : public WebContentsView,
|
| const gfx::Point& screen_location);
|
| void OnDragEnded();
|
|
|
| - // ui::ViewClient implementation.
|
| - bool OnTouchEvent(const ui::MotionEventAndroid& event,
|
| - bool for_touch_handle) override;
|
| - void OnPhysicalBackingSizeChanged() override;
|
| -
|
| - private:
|
| // The WebContents whose contents we display.
|
| WebContentsImpl* web_contents_;
|
|
|
|
|