| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 630 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 641 RenderViewHostIsNotReusedAfterDelayedSwapOutACK); | 641 RenderViewHostIsNotReusedAfterDelayedSwapOutACK); |
| 642 | 642 |
| 643 // IPC Message handlers. | 643 // IPC Message handlers. |
| 644 void OnAddMessageToConsole(int32_t level, | 644 void OnAddMessageToConsole(int32_t level, |
| 645 const base::string16& message, | 645 const base::string16& message, |
| 646 int32_t line_no, | 646 int32_t line_no, |
| 647 const base::string16& source_id); | 647 const base::string16& source_id); |
| 648 void OnDetach(); | 648 void OnDetach(); |
| 649 void OnFrameFocused(); | 649 void OnFrameFocused(); |
| 650 void OnOpenURL(const FrameHostMsg_OpenURL_Params& params); | 650 void OnOpenURL(const FrameHostMsg_OpenURL_Params& params); |
| 651 void OnCancelInitialHistoryLoad(); |
| 651 void OnDocumentOnLoadCompleted( | 652 void OnDocumentOnLoadCompleted( |
| 652 FrameMsg_UILoadMetricsReportType::Value report_type, | 653 FrameMsg_UILoadMetricsReportType::Value report_type, |
| 653 base::TimeTicks ui_timestamp); | 654 base::TimeTicks ui_timestamp); |
| 654 void OnDidStartProvisionalLoad( | 655 void OnDidStartProvisionalLoad( |
| 655 const GURL& url, | 656 const GURL& url, |
| 656 const base::TimeTicks& navigation_start); | 657 const base::TimeTicks& navigation_start); |
| 657 void OnDidFailProvisionalLoadWithError( | 658 void OnDidFailProvisionalLoadWithError( |
| 658 const FrameHostMsg_DidFailProvisionalLoadWithError_Params& params); | 659 const FrameHostMsg_DidFailProvisionalLoadWithError_Params& params); |
| 659 void OnDidFailLoadWithError( | 660 void OnDidFailLoadWithError( |
| 660 const GURL& url, | 661 const GURL& url, |
| (...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1057 | 1058 |
| 1058 // NOTE: This must be the last member. | 1059 // NOTE: This must be the last member. |
| 1059 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 1060 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
| 1060 | 1061 |
| 1061 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 1062 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
| 1062 }; | 1063 }; |
| 1063 | 1064 |
| 1064 } // namespace content | 1065 } // namespace content |
| 1065 | 1066 |
| 1066 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 1067 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| OLD | NEW |