| OLD | NEW |
| 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 Loading... |
| 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 734 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 970 // Maps the ids of pending image downloads to their callbacks | 972 // Maps the ids of pending image downloads to their callbacks |
| 971 typedef std::map<int, ImageDownloadCallback> ImageDownloadMap; | 973 typedef std::map<int, ImageDownloadCallback> ImageDownloadMap; |
| 972 ImageDownloadMap image_download_map_; | 974 ImageDownloadMap image_download_map_; |
| 973 | 975 |
| 974 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 976 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
| 975 }; | 977 }; |
| 976 | 978 |
| 977 } // namespace content | 979 } // namespace content |
| 978 | 980 |
| 979 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 981 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |