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

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

Issue 23477051: Embed Flash Fullscreen widget within browser window. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add caution comment to chrome_switches.cc. Created 7 years, 3 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 | Annotate | Revision Log
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 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 virtual RenderProcessHost* GetRenderProcessHost() const OVERRIDE; 216 virtual RenderProcessHost* GetRenderProcessHost() const OVERRIDE;
217 virtual RenderViewHost* GetRenderViewHost() const OVERRIDE; 217 virtual RenderViewHost* GetRenderViewHost() const OVERRIDE;
218 virtual void GetRenderViewHostAtPosition( 218 virtual void GetRenderViewHostAtPosition(
219 int x, 219 int x,
220 int y, 220 int y,
221 const GetRenderViewHostCallback& callback) OVERRIDE; 221 const GetRenderViewHostCallback& callback) OVERRIDE;
222 virtual WebContents* GetEmbedderWebContents() const OVERRIDE; 222 virtual WebContents* GetEmbedderWebContents() const OVERRIDE;
223 virtual int GetEmbeddedInstanceID() const OVERRIDE; 223 virtual int GetEmbeddedInstanceID() const OVERRIDE;
224 virtual int GetRoutingID() const OVERRIDE; 224 virtual int GetRoutingID() const OVERRIDE;
225 virtual RenderWidgetHostView* GetRenderWidgetHostView() const OVERRIDE; 225 virtual RenderWidgetHostView* GetRenderWidgetHostView() const OVERRIDE;
226 virtual RenderWidgetHostView* GetFullscreenRenderWidgetHostView() const
227 OVERRIDE;
226 virtual WebContentsView* GetView() const OVERRIDE; 228 virtual WebContentsView* GetView() const OVERRIDE;
227 virtual WebUI* CreateWebUI(const GURL& url) OVERRIDE; 229 virtual WebUI* CreateWebUI(const GURL& url) OVERRIDE;
228 virtual WebUI* GetWebUI() const OVERRIDE; 230 virtual WebUI* GetWebUI() const OVERRIDE;
229 virtual WebUI* GetCommittedWebUI() const OVERRIDE; 231 virtual WebUI* GetCommittedWebUI() const OVERRIDE;
230 virtual void SetUserAgentOverride(const std::string& override) OVERRIDE; 232 virtual void SetUserAgentOverride(const std::string& override) OVERRIDE;
231 virtual const std::string& GetUserAgentOverride() const OVERRIDE; 233 virtual const std::string& GetUserAgentOverride() const OVERRIDE;
232 #if defined(OS_WIN) && defined(USE_AURA) 234 #if defined(OS_WIN) && defined(USE_AURA)
233 virtual void SetParentNativeViewAccessible( 235 virtual void SetParentNativeViewAccessible(
234 gfx::NativeViewAccessible accessible_parent) OVERRIDE; 236 gfx::NativeViewAccessible accessible_parent) OVERRIDE;
235 #endif 237 #endif
(...skipping 733 matching lines...) Expand 10 before | Expand all | Expand 10 after
969 // Maps the ids of pending image downloads to their callbacks 971 // Maps the ids of pending image downloads to their callbacks
970 typedef std::map<int, ImageDownloadCallback> ImageDownloadMap; 972 typedef std::map<int, ImageDownloadCallback> ImageDownloadMap;
971 ImageDownloadMap image_download_map_; 973 ImageDownloadMap image_download_map_;
972 974
973 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); 975 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl);
974 }; 976 };
975 977
976 } // namespace content 978 } // namespace content
977 979
978 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 980 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_view_host_impl.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