 Chromium Code Reviews
 Chromium Code Reviews Issue 272573005:
  <webview>: Move NewWindow API to chrome  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@guestview_manager_rename
    
  
    Issue 272573005:
  <webview>: Move NewWindow API to chrome  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@guestview_manager_rename| Index: content/public/browser/web_contents.h | 
| diff --git a/content/public/browser/web_contents.h b/content/public/browser/web_contents.h | 
| index 38830c3a86cbf2a8cfa0ed931e21c698c4238053..d44eb8cba12e9d0ba5f9df5834816b12e5fd7e45 100644 | 
| --- a/content/public/browser/web_contents.h | 
| +++ b/content/public/browser/web_contents.h | 
| @@ -94,6 +94,7 @@ class WebContents : public PageNavigator, | 
| SiteInstance* site_instance; | 
| WebContents* opener; | 
| + bool opener_suppressed; | 
| 
lazyboy
2014/05/12 23:00:20
Add desc.
 
Fady Samuel
2014/05/13 18:59:02
Done.
 | 
| int routing_id; | 
| int main_frame_routing_id; | 
| @@ -194,10 +195,6 @@ class WebContents : public PageNavigator, | 
| // Gets the current RenderViewHost for this tab. | 
| virtual RenderViewHost* GetRenderViewHost() const = 0; | 
| - // Returns the WebContents embedding this WebContents, if any. | 
| - // If this is a top-level WebContents then it returns NULL. | 
| - virtual WebContents* GetEmbedderWebContents() const = 0; | 
| - | 
| // Gets the instance ID of the current WebContents if it is embedded | 
| // within a BrowserPlugin. The instance ID of a WebContents uniquely | 
| // identifies it within its embedder WebContents. |