| 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 base::TerminationStatus status, | 275 base::TerminationStatus status, |
| 276 int error_code) OVERRIDE; | 276 int error_code) OVERRIDE; |
| 277 virtual void RenderViewDeleted( | 277 virtual void RenderViewDeleted( |
| 278 content::RenderViewHost* render_view_host) OVERRIDE; | 278 content::RenderViewHost* render_view_host) OVERRIDE; |
| 279 virtual void DidStartProvisionalLoadForFrame( | 279 virtual void DidStartProvisionalLoadForFrame( |
| 280 content::RenderViewHost* render_view_host, | 280 content::RenderViewHost* render_view_host, |
| 281 int64 frame_id, | 281 int64 frame_id, |
| 282 bool main_frame, | 282 bool main_frame, |
| 283 const GURL& opener_url, | 283 const GURL& opener_url, |
| 284 const GURL& url) OVERRIDE; | 284 const GURL& url) OVERRIDE; |
| 285 virtual void DidRedirectProvisionalLoad( | |
| 286 content::RenderViewHost* render_view_host, | |
| 287 int32 page_id, | |
| 288 const GURL& opener_url, | |
| 289 const GURL& source_url, | |
| 290 const GURL& target_url) OVERRIDE; | |
| 291 virtual void DidFailProvisionalLoadWithError( | 285 virtual void DidFailProvisionalLoadWithError( |
| 292 content::RenderViewHost* render_view_host, | 286 content::RenderViewHost* render_view_host, |
| 293 const ViewHostMsg_DidFailProvisionalLoadWithError_Params& params) | 287 const ViewHostMsg_DidFailProvisionalLoadWithError_Params& params) |
| 294 OVERRIDE; | 288 OVERRIDE; |
| 295 virtual void DidNavigate( | 289 virtual void DidNavigate( |
| 296 content::RenderViewHost* render_view_host, | 290 content::RenderViewHost* render_view_host, |
| 297 const ViewHostMsg_FrameNavigate_Params& params) OVERRIDE; | 291 const ViewHostMsg_FrameNavigate_Params& params) OVERRIDE; |
| 298 virtual void UpdateState(content::RenderViewHost* render_view_host, | 292 virtual void UpdateState(content::RenderViewHost* render_view_host, |
| 299 int32 page_id, | 293 int32 page_id, |
| 300 const std::string& state) OVERRIDE; | 294 const std::string& state) OVERRIDE; |
| (...skipping 494 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 795 content::ColorChooser* color_chooser_; | 789 content::ColorChooser* color_chooser_; |
| 796 | 790 |
| 797 // This must be at the end, or else we might get notifications and use other | 791 // This must be at the end, or else we might get notifications and use other |
| 798 // member variables that are gone. | 792 // member variables that are gone. |
| 799 content::NotificationRegistrar registrar_; | 793 content::NotificationRegistrar registrar_; |
| 800 | 794 |
| 801 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 795 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
| 802 }; | 796 }; |
| 803 | 797 |
| 804 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 798 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |