| 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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 virtual void SetDelegate(WebContentsDelegate* delegate) OVERRIDE; | 187 virtual void SetDelegate(WebContentsDelegate* delegate) OVERRIDE; |
| 188 virtual NavigationControllerImpl& GetController() OVERRIDE; | 188 virtual NavigationControllerImpl& GetController() OVERRIDE; |
| 189 virtual const NavigationControllerImpl& GetController() const OVERRIDE; | 189 virtual const NavigationControllerImpl& GetController() const OVERRIDE; |
| 190 virtual BrowserContext* GetBrowserContext() const OVERRIDE; | 190 virtual BrowserContext* GetBrowserContext() const OVERRIDE; |
| 191 virtual RenderProcessHost* GetRenderProcessHost() const OVERRIDE; | 191 virtual RenderProcessHost* GetRenderProcessHost() const OVERRIDE; |
| 192 virtual RenderViewHost* GetRenderViewHost() const OVERRIDE; | 192 virtual RenderViewHost* GetRenderViewHost() const OVERRIDE; |
| 193 virtual void GetRenderViewHostAtPosition( | 193 virtual void GetRenderViewHostAtPosition( |
| 194 int x, | 194 int x, |
| 195 int y, | 195 int y, |
| 196 const GetRenderViewHostCallback& callback) OVERRIDE; | 196 const GetRenderViewHostCallback& callback) OVERRIDE; |
| 197 virtual WebContents* GetEmbedderWebContents() const OVERRIDE; |
| 198 virtual int GetEmbeddedInstanceID() const OVERRIDE; |
| 197 virtual int GetRoutingID() const OVERRIDE; | 199 virtual int GetRoutingID() const OVERRIDE; |
| 198 virtual RenderWidgetHostView* GetRenderWidgetHostView() const OVERRIDE; | 200 virtual RenderWidgetHostView* GetRenderWidgetHostView() const OVERRIDE; |
| 199 virtual WebContentsView* GetView() const OVERRIDE; | 201 virtual WebContentsView* GetView() const OVERRIDE; |
| 200 virtual WebUI* CreateWebUI(const GURL& url) OVERRIDE; | 202 virtual WebUI* CreateWebUI(const GURL& url) OVERRIDE; |
| 201 virtual WebUI* GetWebUI() const OVERRIDE; | 203 virtual WebUI* GetWebUI() const OVERRIDE; |
| 202 virtual WebUI* GetCommittedWebUI() const OVERRIDE; | 204 virtual WebUI* GetCommittedWebUI() const OVERRIDE; |
| 203 virtual void SetUserAgentOverride(const std::string& override) OVERRIDE; | 205 virtual void SetUserAgentOverride(const std::string& override) OVERRIDE; |
| 204 virtual const std::string& GetUserAgentOverride() const OVERRIDE; | 206 virtual const std::string& GetUserAgentOverride() const OVERRIDE; |
| 205 virtual const string16& GetTitle() const OVERRIDE; | 207 virtual const string16& GetTitle() const OVERRIDE; |
| 206 virtual int32 GetMaxPageID() OVERRIDE; | 208 virtual int32 GetMaxPageID() OVERRIDE; |
| (...skipping 683 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 890 // Maps the ids of pending favicon downloads to their callbacks | 892 // Maps the ids of pending favicon downloads to their callbacks |
| 891 typedef std::map<int, FaviconDownloadCallback> FaviconDownloadMap; | 893 typedef std::map<int, FaviconDownloadCallback> FaviconDownloadMap; |
| 892 FaviconDownloadMap favicon_download_map_; | 894 FaviconDownloadMap favicon_download_map_; |
| 893 | 895 |
| 894 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 896 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
| 895 }; | 897 }; |
| 896 | 898 |
| 897 } // namespace content | 899 } // namespace content |
| 898 | 900 |
| 899 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 901 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |