| 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 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 virtual void RenderViewReady( | 294 virtual void RenderViewReady( |
| 295 content::RenderViewHost* render_view_host) OVERRIDE; | 295 content::RenderViewHost* render_view_host) OVERRIDE; |
| 296 virtual void RenderViewGone(content::RenderViewHost* render_view_host, | 296 virtual void RenderViewGone(content::RenderViewHost* render_view_host, |
| 297 base::TerminationStatus status, | 297 base::TerminationStatus status, |
| 298 int error_code) OVERRIDE; | 298 int error_code) OVERRIDE; |
| 299 virtual void RenderViewDeleted( | 299 virtual void RenderViewDeleted( |
| 300 content::RenderViewHost* render_view_host) OVERRIDE; | 300 content::RenderViewHost* render_view_host) OVERRIDE; |
| 301 virtual void DidStartProvisionalLoadForFrame( | 301 virtual void DidStartProvisionalLoadForFrame( |
| 302 content::RenderViewHost* render_view_host, | 302 content::RenderViewHost* render_view_host, |
| 303 int64 frame_id, | 303 int64 frame_id, |
| 304 int64 parent_frame_id, |
| 304 bool main_frame, | 305 bool main_frame, |
| 305 const GURL& opener_url, | 306 const GURL& opener_url, |
| 306 const GURL& url) OVERRIDE; | 307 const GURL& url) OVERRIDE; |
| 307 virtual void DidRedirectProvisionalLoad( | 308 virtual void DidRedirectProvisionalLoad( |
| 308 content::RenderViewHost* render_view_host, | 309 content::RenderViewHost* render_view_host, |
| 309 int32 page_id, | 310 int32 page_id, |
| 310 const GURL& opener_url, | 311 const GURL& opener_url, |
| 311 const GURL& source_url, | 312 const GURL& source_url, |
| 312 const GURL& target_url) OVERRIDE; | 313 const GURL& target_url) OVERRIDE; |
| 313 virtual void DidFailProvisionalLoadWithError( | 314 virtual void DidFailProvisionalLoadWithError( |
| (...skipping 553 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 867 content::RenderViewHost* message_source_; | 868 content::RenderViewHost* message_source_; |
| 868 | 869 |
| 869 // All live RenderWidgetHostImpls that are created by this object and may | 870 // All live RenderWidgetHostImpls that are created by this object and may |
| 870 // outlive it. | 871 // outlive it. |
| 871 std::set<content::RenderWidgetHostImpl*> created_widgets_; | 872 std::set<content::RenderWidgetHostImpl*> created_widgets_; |
| 872 | 873 |
| 873 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 874 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
| 874 }; | 875 }; |
| 875 | 876 |
| 876 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 877 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |