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