| 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 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 base::TerminationStatus status, | 257 base::TerminationStatus status, |
| 258 int error_code) OVERRIDE; | 258 int error_code) OVERRIDE; |
| 259 virtual void RenderViewDeleted( | 259 virtual void RenderViewDeleted( |
| 260 content::RenderViewHost* render_view_host) OVERRIDE; | 260 content::RenderViewHost* render_view_host) OVERRIDE; |
| 261 virtual void DidStartProvisionalLoadForFrame( | 261 virtual void DidStartProvisionalLoadForFrame( |
| 262 content::RenderViewHost* render_view_host, | 262 content::RenderViewHost* render_view_host, |
| 263 int64 frame_id, | 263 int64 frame_id, |
| 264 bool main_frame, | 264 bool main_frame, |
| 265 const GURL& opener_url, | 265 const GURL& opener_url, |
| 266 const GURL& url) OVERRIDE; | 266 const GURL& url) OVERRIDE; |
| 267 virtual void DidRedirectProvisionalLoad( | |
| 268 content::RenderViewHost* render_view_host, | |
| 269 int32 page_id, | |
| 270 const GURL& opener_url, | |
| 271 const GURL& source_url, | |
| 272 const GURL& target_url) OVERRIDE; | |
| 273 virtual void DidFailProvisionalLoadWithError( | 267 virtual void DidFailProvisionalLoadWithError( |
| 274 content::RenderViewHost* render_view_host, | 268 content::RenderViewHost* render_view_host, |
| 275 const ViewHostMsg_DidFailProvisionalLoadWithError_Params& params) | 269 const ViewHostMsg_DidFailProvisionalLoadWithError_Params& params) |
| 276 OVERRIDE; | 270 OVERRIDE; |
| 277 virtual void DidNavigate( | 271 virtual void DidNavigate( |
| 278 content::RenderViewHost* render_view_host, | 272 content::RenderViewHost* render_view_host, |
| 279 const ViewHostMsg_FrameNavigate_Params& params) OVERRIDE; | 273 const ViewHostMsg_FrameNavigate_Params& params) OVERRIDE; |
| 280 virtual void UpdateState(content::RenderViewHost* render_view_host, | 274 virtual void UpdateState(content::RenderViewHost* render_view_host, |
| 281 int32 page_id, | 275 int32 page_id, |
| 282 const std::string& state) OVERRIDE; | 276 const std::string& state) OVERRIDE; |
| (...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 711 // Type of view this WebContents is displaying. | 705 // Type of view this WebContents is displaying. |
| 712 content::ViewType view_type_; | 706 content::ViewType view_type_; |
| 713 | 707 |
| 714 // Color chooser that was opened by this tab. | 708 // Color chooser that was opened by this tab. |
| 715 content::ColorChooser* color_chooser_; | 709 content::ColorChooser* color_chooser_; |
| 716 | 710 |
| 717 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 711 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
| 718 }; | 712 }; |
| 719 | 713 |
| 720 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 714 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |