| Index: content/public/test/render_view_test.h
|
| diff --git a/content/public/test/render_view_test.h b/content/public/test/render_view_test.h
|
| index de9397b2b2c3819f41fa557758e8eb7401d69630..36ca0be4943546e995869e332d6c10dce154eea1 100644
|
| --- a/content/public/test/render_view_test.h
|
| +++ b/content/public/test/render_view_test.h
|
| @@ -115,6 +115,14 @@ class RenderViewTest : public testing::Test {
|
| // Sends a left mouse click at the |point|.
|
| void SimulatePointClick(const gfx::Point& point);
|
|
|
| + // Sends a right mouse click in the middle of the element with id
|
| + // |element_id|. Returns true if the event was sent, false otherwise
|
| + // (typically because the element was not found).
|
| + bool SimulateElementRightClick(const std::string& element_id);
|
| +
|
| + // Sends a right mouse click at the |point|.
|
| + void SimulatePointRightClick(const gfx::Point& point);
|
| +
|
| // Sends a tap at the |rect|.
|
| void SimulateRectTap(const gfx::Rect& rect);
|
|
|
|
|