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 439 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
450 const std::vector<AXEventNotificationDetails>& details) OVERRIDE; | 450 const std::vector<AXEventNotificationDetails>& details) OVERRIDE; |
451 | 451 |
452 // NavigatorDelegate --------------------------------------------------------- | 452 // NavigatorDelegate --------------------------------------------------------- |
453 | 453 |
454 virtual void DidStartProvisionalLoad( | 454 virtual void DidStartProvisionalLoad( |
455 RenderFrameHostImpl* render_frame_host, | 455 RenderFrameHostImpl* render_frame_host, |
456 int parent_routing_id, | 456 int parent_routing_id, |
457 const GURL& validated_url, | 457 const GURL& validated_url, |
458 bool is_error_page, | 458 bool is_error_page, |
459 bool is_iframe_srcdoc) OVERRIDE; | 459 bool is_iframe_srcdoc) OVERRIDE; |
| 460 virtual void DidStartNavigationTransition( |
| 461 RenderFrameHostImpl* render_frame_host) OVERRIDE; |
460 virtual void DidFailProvisionalLoadWithError( | 462 virtual void DidFailProvisionalLoadWithError( |
461 RenderFrameHostImpl* render_frame_host, | 463 RenderFrameHostImpl* render_frame_host, |
462 const FrameHostMsg_DidFailProvisionalLoadWithError_Params& params) | 464 const FrameHostMsg_DidFailProvisionalLoadWithError_Params& params) |
463 OVERRIDE; | 465 OVERRIDE; |
464 virtual void DidFailLoadWithError( | 466 virtual void DidFailLoadWithError( |
465 RenderFrameHostImpl* render_frame_host, | 467 RenderFrameHostImpl* render_frame_host, |
466 const GURL& url, | 468 const GURL& url, |
467 int error_code, | 469 int error_code, |
468 const base::string16& error_description) OVERRIDE; | 470 const base::string16& error_description) OVERRIDE; |
469 virtual void DidRedirectProvisionalLoad( | 471 virtual void DidRedirectProvisionalLoad( |
(...skipping 686 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1156 | 1158 |
1157 scoped_ptr<ScreenOrientationDispatcherHost> | 1159 scoped_ptr<ScreenOrientationDispatcherHost> |
1158 screen_orientation_dispatcher_host_; | 1160 screen_orientation_dispatcher_host_; |
1159 | 1161 |
1160 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 1162 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
1161 }; | 1163 }; |
1162 | 1164 |
1163 } // namespace content | 1165 } // namespace content |
1164 | 1166 |
1165 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1167 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
OLD | NEW |