Chromium Code Reviews| 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..08738f73f7b5fb9c72ae50f72c6dfb68cc6119bd 100644 |
| --- a/content/public/browser/web_contents.h |
| +++ b/content/public/browser/web_contents.h |
| @@ -628,6 +628,12 @@ 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) |
|
jam
2015/04/23 21:39:06
nit: blank line above
|
| CONTENT_EXPORT static WebContents* FromJavaWebContents( |
| jobject jweb_contents_android); |