| 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 457 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 468 void OnOpenURL(const FrameHostMsg_OpenURL_Params& params); | 468 void OnOpenURL(const FrameHostMsg_OpenURL_Params& params); |
| 469 void OnDocumentOnLoadCompleted( | 469 void OnDocumentOnLoadCompleted( |
| 470 FrameMsg_UILoadMetricsReportType::Value report_type, | 470 FrameMsg_UILoadMetricsReportType::Value report_type, |
| 471 base::TimeTicks ui_timestamp); | 471 base::TimeTicks ui_timestamp); |
| 472 void OnDidStartProvisionalLoadForFrame(const GURL& url); | 472 void OnDidStartProvisionalLoadForFrame(const GURL& url); |
| 473 void OnDidFailProvisionalLoadWithError( | 473 void OnDidFailProvisionalLoadWithError( |
| 474 const FrameHostMsg_DidFailProvisionalLoadWithError_Params& params); | 474 const FrameHostMsg_DidFailProvisionalLoadWithError_Params& params); |
| 475 void OnDidFailLoadWithError( | 475 void OnDidFailLoadWithError( |
| 476 const GURL& url, | 476 const GURL& url, |
| 477 int error_code, | 477 int error_code, |
| 478 const base::string16& error_description); | 478 const base::string16& error_description, |
| 479 bool was_ignored_by_handler); |
| 479 void OnDidCommitProvisionalLoad(const IPC::Message& msg); | 480 void OnDidCommitProvisionalLoad(const IPC::Message& msg); |
| 480 void OnDidDropNavigation(); | 481 void OnDidDropNavigation(); |
| 481 void OnBeforeUnloadACK( | 482 void OnBeforeUnloadACK( |
| 482 bool proceed, | 483 bool proceed, |
| 483 const base::TimeTicks& renderer_before_unload_start_time, | 484 const base::TimeTicks& renderer_before_unload_start_time, |
| 484 const base::TimeTicks& renderer_before_unload_end_time); | 485 const base::TimeTicks& renderer_before_unload_end_time); |
| 485 void OnSwapOutACK(); | 486 void OnSwapOutACK(); |
| 486 void OnRenderProcessGone(int status, int error_code); | 487 void OnRenderProcessGone(int status, int error_code); |
| 487 void OnContextMenu(const ContextMenuParams& params); | 488 void OnContextMenu(const ContextMenuParams& params); |
| 488 void OnJavaScriptExecuteResponse(int id, const base::ListValue& result); | 489 void OnJavaScriptExecuteResponse(int id, const base::ListValue& result); |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 723 | 724 |
| 724 // NOTE: This must be the last member. | 725 // NOTE: This must be the last member. |
| 725 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 726 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
| 726 | 727 |
| 727 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 728 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
| 728 }; | 729 }; |
| 729 | 730 |
| 730 } // namespace content | 731 } // namespace content |
| 731 | 732 |
| 732 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 733 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| OLD | NEW |