OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
475 void OnOpenURL(const FrameHostMsg_OpenURL_Params& params); | 475 void OnOpenURL(const FrameHostMsg_OpenURL_Params& params); |
476 void OnDocumentOnLoadCompleted( | 476 void OnDocumentOnLoadCompleted( |
477 FrameMsg_UILoadMetricsReportType::Value report_type, | 477 FrameMsg_UILoadMetricsReportType::Value report_type, |
478 base::TimeTicks ui_timestamp); | 478 base::TimeTicks ui_timestamp); |
479 void OnDidStartProvisionalLoadForFrame(const GURL& url); | 479 void OnDidStartProvisionalLoadForFrame(const GURL& url); |
480 void OnDidFailProvisionalLoadWithError( | 480 void OnDidFailProvisionalLoadWithError( |
481 const FrameHostMsg_DidFailProvisionalLoadWithError_Params& params); | 481 const FrameHostMsg_DidFailProvisionalLoadWithError_Params& params); |
482 void OnDidFailLoadWithError( | 482 void OnDidFailLoadWithError( |
483 const GURL& url, | 483 const GURL& url, |
484 int error_code, | 484 int error_code, |
485 const base::string16& error_description); | 485 const base::string16& error_description, |
| 486 bool was_ignored_by_handler); |
486 void OnDidCommitProvisionalLoad(const IPC::Message& msg); | 487 void OnDidCommitProvisionalLoad(const IPC::Message& msg); |
487 void OnDidDropNavigation(); | 488 void OnDidDropNavigation(); |
488 void OnBeforeUnloadACK( | 489 void OnBeforeUnloadACK( |
489 bool proceed, | 490 bool proceed, |
490 const base::TimeTicks& renderer_before_unload_start_time, | 491 const base::TimeTicks& renderer_before_unload_start_time, |
491 const base::TimeTicks& renderer_before_unload_end_time); | 492 const base::TimeTicks& renderer_before_unload_end_time); |
492 void OnSwapOutACK(); | 493 void OnSwapOutACK(); |
493 void OnRenderProcessGone(int status, int error_code); | 494 void OnRenderProcessGone(int status, int error_code); |
494 void OnContextMenu(const ContextMenuParams& params); | 495 void OnContextMenu(const ContextMenuParams& params); |
495 void OnJavaScriptExecuteResponse(int id, const base::ListValue& result); | 496 void OnJavaScriptExecuteResponse(int id, const base::ListValue& result); |
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
734 | 735 |
735 // NOTE: This must be the last member. | 736 // NOTE: This must be the last member. |
736 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 737 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
737 | 738 |
738 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 739 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
739 }; | 740 }; |
740 | 741 |
741 } // namespace content | 742 } // namespace content |
742 | 743 |
743 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 744 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
OLD | NEW |