Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(146)

Side by Side Diff: content/browser/web_contents/web_contents_impl.h

Issue 272573005: <webview>: Move NewWindow API to chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@guestview_manager_rename
Patch Set: Cleanup and fix tests Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
7 7
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 virtual const GURL& GetURL() const OVERRIDE; 169 virtual const GURL& GetURL() const OVERRIDE;
170 virtual const GURL& GetVisibleURL() const OVERRIDE; 170 virtual const GURL& GetVisibleURL() const OVERRIDE;
171 virtual const GURL& GetLastCommittedURL() const OVERRIDE; 171 virtual const GURL& GetLastCommittedURL() const OVERRIDE;
172 virtual RenderProcessHost* GetRenderProcessHost() const OVERRIDE; 172 virtual RenderProcessHost* GetRenderProcessHost() const OVERRIDE;
173 virtual RenderFrameHost* GetMainFrame() OVERRIDE; 173 virtual RenderFrameHost* GetMainFrame() OVERRIDE;
174 virtual RenderFrameHost* GetFocusedFrame() OVERRIDE; 174 virtual RenderFrameHost* GetFocusedFrame() OVERRIDE;
175 virtual void ForEachFrame( 175 virtual void ForEachFrame(
176 const base::Callback<void(RenderFrameHost*)>& on_frame) OVERRIDE; 176 const base::Callback<void(RenderFrameHost*)>& on_frame) OVERRIDE;
177 virtual void SendToAllFrames(IPC::Message* message) OVERRIDE; 177 virtual void SendToAllFrames(IPC::Message* message) OVERRIDE;
178 virtual RenderViewHost* GetRenderViewHost() const OVERRIDE; 178 virtual RenderViewHost* GetRenderViewHost() const OVERRIDE;
179 virtual WebContents* GetEmbedderWebContents() const OVERRIDE;
180 virtual int GetEmbeddedInstanceID() const OVERRIDE; 179 virtual int GetEmbeddedInstanceID() const OVERRIDE;
181 virtual int GetRoutingID() const OVERRIDE; 180 virtual int GetRoutingID() const OVERRIDE;
182 virtual RenderWidgetHostView* GetRenderWidgetHostView() const OVERRIDE; 181 virtual RenderWidgetHostView* GetRenderWidgetHostView() const OVERRIDE;
183 virtual RenderWidgetHostView* GetFullscreenRenderWidgetHostView() const 182 virtual RenderWidgetHostView* GetFullscreenRenderWidgetHostView() const
184 OVERRIDE; 183 OVERRIDE;
185 virtual WebUI* CreateWebUI(const GURL& url) OVERRIDE; 184 virtual WebUI* CreateWebUI(const GURL& url) OVERRIDE;
186 virtual WebUI* GetWebUI() const OVERRIDE; 185 virtual WebUI* GetWebUI() const OVERRIDE;
187 virtual WebUI* GetCommittedWebUI() const OVERRIDE; 186 virtual WebUI* GetCommittedWebUI() const OVERRIDE;
188 virtual void SetUserAgentOverride(const std::string& override) OVERRIDE; 187 virtual void SetUserAgentOverride(const std::string& override) OVERRIDE;
189 virtual const std::string& GetUserAgentOverride() const OVERRIDE; 188 virtual const std::string& GetUserAgentOverride() const OVERRIDE;
(...skipping 901 matching lines...) Expand 10 before | Expand all | Expand 10 after
1091 1090
1092 // Whether the last JavaScript dialog shown was suppressed. Used for testing. 1091 // Whether the last JavaScript dialog shown was suppressed. Used for testing.
1093 bool last_dialog_suppressed_; 1092 bool last_dialog_suppressed_;
1094 1093
1095 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); 1094 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl);
1096 }; 1095 };
1097 1096
1098 } // namespace content 1097 } // namespace content
1099 1098
1100 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 1099 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698