| 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 461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 472 virtual SessionStorageNamespaceMap GetSessionStorageNamespaceMap() OVERRIDE; | 472 virtual SessionStorageNamespaceMap GetSessionStorageNamespaceMap() OVERRIDE; |
| 473 virtual FrameTree* GetFrameTree() OVERRIDE; | 473 virtual FrameTree* GetFrameTree() OVERRIDE; |
| 474 | 474 |
| 475 // NavigatorDelegate --------------------------------------------------------- | 475 // NavigatorDelegate --------------------------------------------------------- |
| 476 | 476 |
| 477 virtual void DidStartProvisionalLoad( | 477 virtual void DidStartProvisionalLoad( |
| 478 RenderFrameHostImpl* render_frame_host, | 478 RenderFrameHostImpl* render_frame_host, |
| 479 const GURL& validated_url, | 479 const GURL& validated_url, |
| 480 bool is_error_page, | 480 bool is_error_page, |
| 481 bool is_iframe_srcdoc) OVERRIDE; | 481 bool is_iframe_srcdoc) OVERRIDE; |
| 482 virtual void DidStartNavigationTransition( |
| 483 RenderFrameHostImpl* render_frame_host) OVERRIDE; |
| 482 virtual void DidFailProvisionalLoadWithError( | 484 virtual void DidFailProvisionalLoadWithError( |
| 483 RenderFrameHostImpl* render_frame_host, | 485 RenderFrameHostImpl* render_frame_host, |
| 484 const FrameHostMsg_DidFailProvisionalLoadWithError_Params& params) | 486 const FrameHostMsg_DidFailProvisionalLoadWithError_Params& params) |
| 485 OVERRIDE; | 487 OVERRIDE; |
| 486 virtual void DidFailLoadWithError( | 488 virtual void DidFailLoadWithError( |
| 487 RenderFrameHostImpl* render_frame_host, | 489 RenderFrameHostImpl* render_frame_host, |
| 488 const GURL& url, | 490 const GURL& url, |
| 489 int error_code, | 491 int error_code, |
| 490 const base::string16& error_description) OVERRIDE; | 492 const base::string16& error_description) OVERRIDE; |
| 491 virtual void DidRedirectProvisionalLoad( | 493 virtual void DidRedirectProvisionalLoad( |
| (...skipping 692 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1184 // The accessibility mode for all frames. This is queried when each frame | 1186 // The accessibility mode for all frames. This is queried when each frame |
| 1185 // is created, and broadcast to all frames when it changes. | 1187 // is created, and broadcast to all frames when it changes. |
| 1186 AccessibilityMode accessibility_mode_; | 1188 AccessibilityMode accessibility_mode_; |
| 1187 | 1189 |
| 1188 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 1190 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
| 1189 }; | 1191 }; |
| 1190 | 1192 |
| 1191 } // namespace content | 1193 } // namespace content |
| 1192 | 1194 |
| 1193 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1195 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |