| 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 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 280 virtual RenderViewHostDelegateView* GetDelegateView() OVERRIDE; | 280 virtual RenderViewHostDelegateView* GetDelegateView() OVERRIDE; |
| 281 virtual RenderViewHostDelegate::RendererManagement* | 281 virtual RenderViewHostDelegate::RendererManagement* |
| 282 GetRendererManagementDelegate() OVERRIDE; | 282 GetRendererManagementDelegate() OVERRIDE; |
| 283 virtual bool OnMessageReceived(RenderViewHost* render_view_host, | 283 virtual bool OnMessageReceived(RenderViewHost* render_view_host, |
| 284 const IPC::Message& message) OVERRIDE; | 284 const IPC::Message& message) OVERRIDE; |
| 285 virtual const GURL& GetURL() const OVERRIDE; | 285 virtual const GURL& GetURL() const OVERRIDE; |
| 286 virtual WebContents* GetAsWebContents() OVERRIDE; | 286 virtual WebContents* GetAsWebContents() OVERRIDE; |
| 287 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; | 287 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; |
| 288 virtual void RenderViewCreated(RenderViewHost* render_view_host) OVERRIDE; | 288 virtual void RenderViewCreated(RenderViewHost* render_view_host) OVERRIDE; |
| 289 virtual void RenderViewReady(RenderViewHost* render_view_host) OVERRIDE; | 289 virtual void RenderViewReady(RenderViewHost* render_view_host) OVERRIDE; |
| 290 virtual void RenderViewGone(RenderViewHost* render_view_host, | 290 virtual void RenderViewTerminated(RenderViewHost* render_view_host, |
| 291 base::TerminationStatus status, | 291 base::TerminationStatus status, |
| 292 int error_code) OVERRIDE; | 292 int error_code) OVERRIDE; |
| 293 virtual void RenderViewDeleted(RenderViewHost* render_view_host) OVERRIDE; | 293 virtual void RenderViewDeleted(RenderViewHost* render_view_host) OVERRIDE; |
| 294 virtual void DidStartProvisionalLoadForFrame( | 294 virtual void DidStartProvisionalLoadForFrame( |
| 295 RenderViewHost* render_view_host, | 295 RenderViewHost* render_view_host, |
| 296 int64 frame_id, | 296 int64 frame_id, |
| 297 int64 parent_frame_id, | 297 int64 parent_frame_id, |
| 298 bool main_frame, | 298 bool main_frame, |
| 299 const GURL& url) OVERRIDE; | 299 const GURL& url) OVERRIDE; |
| 300 virtual void DidRedirectProvisionalLoad( | 300 virtual void DidRedirectProvisionalLoad( |
| 301 RenderViewHost* render_view_host, | 301 RenderViewHost* render_view_host, |
| 302 int32 page_id, | 302 int32 page_id, |
| (...skipping 570 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 873 // Maps the ids of pending image downloads to their callbacks | 873 // Maps the ids of pending image downloads to their callbacks |
| 874 typedef std::map<int, ImageDownloadCallback> ImageDownloadMap; | 874 typedef std::map<int, ImageDownloadCallback> ImageDownloadMap; |
| 875 ImageDownloadMap image_download_map_; | 875 ImageDownloadMap image_download_map_; |
| 876 | 876 |
| 877 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 877 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
| 878 }; | 878 }; |
| 879 | 879 |
| 880 } // namespace content | 880 } // namespace content |
| 881 | 881 |
| 882 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 882 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |