| 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 52c443817281d09039b1b5506711bcb426a25f65..3350fadd54bc39f61087f0073777da86c2b3bb3e 100644
|
| --- a/content/public/test/browser_test_utils.h
|
| +++ b/content/public/test/browser_test_utils.h
|
| @@ -310,6 +310,24 @@ void WaitForAccessibilityTreeToContainNodeWithName(WebContents* web_contents,
|
| // Get a snapshot of a web page's accessibility tree.
|
| ui::AXTreeUpdate GetAccessibilityTreeSnapshot(WebContents* web_contents);
|
|
|
| +// Find out if the BrowserPlugin for a guest webcontents is focused. Returns
|
| +// false if the WebContents doesn't have a BrowserPlugin.
|
| +bool IsWebContentsBrowserPluginFocused(content::WebContents* web_contents);
|
| +
|
| +#if defined(USE_AURA)
|
| +// Send a TouchStart/End sequence routed via the main frame's
|
| +// RenderWidgetHostViewAura.
|
| +void SendRoutedTouchTapSequence(content::WebContents* web_contents,
|
| + gfx::Point point);
|
| +
|
| +// Send a GestureTapDown/GestureTap sequence routed via the main frame's
|
| +// RenderWidgetHostViewAura.
|
| +void SendRoutedGestureTapSequence(content::WebContents* web_contents,
|
| + gfx::Point point);
|
| +#endif
|
| +
|
| +void WaitForSurfaceReady(content::WebContents* web_contents);
|
| +
|
| // Watches title changes on a WebContents, blocking until an expected title is
|
| // set.
|
| class TitleWatcher : public WebContentsObserver {
|
|
|