| Index: content/public/test/browser_test_utils.h
|
| diff --git a/content/public/test/browser_test_utils.h b/content/public/test/browser_test_utils.h
|
| index f05f4037b4c0980626b8c48ff7d30397a63adcfd..f198df2f5b64402886f1a5846b683faaa0bd0d91 100644
|
| --- a/content/public/test/browser_test_utils.h
|
| +++ b/content/public/test/browser_test_utils.h
|
| @@ -113,6 +113,16 @@ void SimulateMouseEvent(WebContents* web_contents,
|
| blink::WebInputEvent::Type type,
|
| const gfx::Point& point);
|
|
|
| +// Simulate a mouse wheel event.
|
| +void SimulateMouseWheelEvent(WebContents* web_contents,
|
| + const gfx::Point& point,
|
| + const gfx::Vector2d& delta);
|
| +
|
| +// Sends a simple, three-event (Begin/Update/End) gesture scroll.
|
| +void SimulateGestureScrollSequence(WebContents* web_contents,
|
| + const gfx::Point& point,
|
| + const gfx::Vector2dF& delta);
|
| +
|
| // Taps the screen at |point|.
|
| void SimulateTapAt(WebContents* web_contents, const gfx::Point& point);
|
|
|
|
|