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

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: Merge with ToT 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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 virtual const GURL& GetURL() const OVERRIDE; 173 virtual const GURL& GetURL() const OVERRIDE;
174 virtual const GURL& GetVisibleURL() const OVERRIDE; 174 virtual const GURL& GetVisibleURL() const OVERRIDE;
175 virtual const GURL& GetLastCommittedURL() const OVERRIDE; 175 virtual const GURL& GetLastCommittedURL() const OVERRIDE;
176 virtual RenderProcessHost* GetRenderProcessHost() const OVERRIDE; 176 virtual RenderProcessHost* GetRenderProcessHost() const OVERRIDE;
177 virtual RenderFrameHost* GetMainFrame() OVERRIDE; 177 virtual RenderFrameHost* GetMainFrame() OVERRIDE;
178 virtual RenderFrameHost* GetFocusedFrame() OVERRIDE; 178 virtual RenderFrameHost* GetFocusedFrame() OVERRIDE;
179 virtual void ForEachFrame( 179 virtual void ForEachFrame(
180 const base::Callback<void(RenderFrameHost*)>& on_frame) OVERRIDE; 180 const base::Callback<void(RenderFrameHost*)>& on_frame) OVERRIDE;
181 virtual void SendToAllFrames(IPC::Message* message) OVERRIDE; 181 virtual void SendToAllFrames(IPC::Message* message) OVERRIDE;
182 virtual RenderViewHost* GetRenderViewHost() const OVERRIDE; 182 virtual RenderViewHost* GetRenderViewHost() const OVERRIDE;
183 virtual WebContents* GetEmbedderWebContents() const OVERRIDE;
184 virtual int GetEmbeddedInstanceID() const OVERRIDE;
185 virtual int GetRoutingID() const OVERRIDE; 183 virtual int GetRoutingID() const OVERRIDE;
186 virtual RenderWidgetHostView* GetRenderWidgetHostView() const OVERRIDE; 184 virtual RenderWidgetHostView* GetRenderWidgetHostView() const OVERRIDE;
187 virtual RenderWidgetHostView* GetFullscreenRenderWidgetHostView() const 185 virtual RenderWidgetHostView* GetFullscreenRenderWidgetHostView() const
188 OVERRIDE; 186 OVERRIDE;
189 virtual WebUI* CreateWebUI(const GURL& url) OVERRIDE; 187 virtual WebUI* CreateWebUI(const GURL& url) OVERRIDE;
190 virtual WebUI* GetWebUI() const OVERRIDE; 188 virtual WebUI* GetWebUI() const OVERRIDE;
191 virtual WebUI* GetCommittedWebUI() const OVERRIDE; 189 virtual WebUI* GetCommittedWebUI() const OVERRIDE;
192 virtual void SetUserAgentOverride(const std::string& override) OVERRIDE; 190 virtual void SetUserAgentOverride(const std::string& override) OVERRIDE;
193 virtual const std::string& GetUserAgentOverride() const OVERRIDE; 191 virtual const std::string& GetUserAgentOverride() const OVERRIDE;
194 #if defined(OS_WIN) 192 #if defined(OS_WIN)
(...skipping 931 matching lines...) Expand 10 before | Expand all | Expand 10 after
1126 bool last_dialog_suppressed_; 1124 bool last_dialog_suppressed_;
1127 1125
1128 scoped_ptr<GeolocationDispatcherHost> geolocation_dispatcher_host_; 1126 scoped_ptr<GeolocationDispatcherHost> geolocation_dispatcher_host_;
1129 1127
1130 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); 1128 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl);
1131 }; 1129 };
1132 1130
1133 } // namespace content 1131 } // namespace content
1134 1132
1135 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 1133 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
OLDNEW
« no previous file with comments | « content/browser/browser_plugin/test_guest_manager.cc ('k') | content/browser/web_contents/web_contents_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698