| 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 438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 449 virtual void AccessibilityEventReceived( | 449 virtual void AccessibilityEventReceived( |
| 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 const GURL& validated_url, | 456 const GURL& validated_url, |
| 457 bool is_error_page, | 457 bool is_error_page, |
| 458 bool is_iframe_srcdoc) OVERRIDE; | 458 bool is_iframe_srcdoc) OVERRIDE; |
| 459 virtual void DidStartNavigationTransition( |
| 460 RenderFrameHostImpl* render_frame_host) OVERRIDE; |
| 459 virtual void DidFailProvisionalLoadWithError( | 461 virtual void DidFailProvisionalLoadWithError( |
| 460 RenderFrameHostImpl* render_frame_host, | 462 RenderFrameHostImpl* render_frame_host, |
| 461 const FrameHostMsg_DidFailProvisionalLoadWithError_Params& params) | 463 const FrameHostMsg_DidFailProvisionalLoadWithError_Params& params) |
| 462 OVERRIDE; | 464 OVERRIDE; |
| 463 virtual void DidFailLoadWithError( | 465 virtual void DidFailLoadWithError( |
| 464 RenderFrameHostImpl* render_frame_host, | 466 RenderFrameHostImpl* render_frame_host, |
| 465 const GURL& url, | 467 const GURL& url, |
| 466 int error_code, | 468 int error_code, |
| 467 const base::string16& error_description) OVERRIDE; | 469 const base::string16& error_description) OVERRIDE; |
| 468 virtual void DidRedirectProvisionalLoad( | 470 virtual void DidRedirectProvisionalLoad( |
| (...skipping 687 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 |