| Index: content/public/browser/web_contents.h
|
| diff --git a/content/public/browser/web_contents.h b/content/public/browser/web_contents.h
|
| index 43804129322c4ed56ffc7b451c6ae1e5b84bfc2d..d6c9a9626bcc2d0878d343ddbb12c9028f62f6b8 100644
|
| --- a/content/public/browser/web_contents.h
|
| +++ b/content/public/browser/web_contents.h
|
| @@ -628,6 +628,13 @@ class WebContents : public PageNavigator,
|
| // Requests the renderer to exit fullscreen.
|
| virtual void ExitFullscreen() = 0;
|
|
|
| + // Unblocks requests from renderer for a newly created window. This is
|
| + // used in showCreatedWindow() or sometimes later in cases where
|
| + // delegate->ShouldResumeRequestsForCreatedWindow() indicated the requests
|
| + // should not yet be resumed. Then the client is responsible for calling this
|
| + // as soon as they are ready.
|
| + virtual void ResumeLoadingCreatedWebContents() = 0;
|
| +
|
| #if defined(OS_ANDROID)
|
| CONTENT_EXPORT static WebContents* FromJavaWebContents(
|
| jobject jweb_contents_android);
|
|
|