| 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 651 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 662 const base::string16& source_id); | 662 const base::string16& source_id); |
| 663 void OnDetach(); | 663 void OnDetach(); |
| 664 void OnFrameFocused(); | 664 void OnFrameFocused(); |
| 665 void OnOpenURL(const FrameHostMsg_OpenURL_Params& params); | 665 void OnOpenURL(const FrameHostMsg_OpenURL_Params& params); |
| 666 void OnCancelInitialHistoryLoad(); | 666 void OnCancelInitialHistoryLoad(); |
| 667 void OnDocumentOnLoadCompleted( | 667 void OnDocumentOnLoadCompleted( |
| 668 FrameMsg_UILoadMetricsReportType::Value report_type, | 668 FrameMsg_UILoadMetricsReportType::Value report_type, |
| 669 base::TimeTicks ui_timestamp); | 669 base::TimeTicks ui_timestamp); |
| 670 void OnDidStartProvisionalLoad( | 670 void OnDidStartProvisionalLoad( |
| 671 const GURL& url, | 671 const GURL& url, |
| 672 const std::vector<GURL>& redirect_chain, |
| 672 const base::TimeTicks& navigation_start); | 673 const base::TimeTicks& navigation_start); |
| 673 void OnDidFailProvisionalLoadWithError( | 674 void OnDidFailProvisionalLoadWithError( |
| 674 const FrameHostMsg_DidFailProvisionalLoadWithError_Params& params); | 675 const FrameHostMsg_DidFailProvisionalLoadWithError_Params& params); |
| 675 void OnDidFailLoadWithError( | 676 void OnDidFailLoadWithError( |
| 676 const GURL& url, | 677 const GURL& url, |
| 677 int error_code, | 678 int error_code, |
| 678 const base::string16& error_description, | 679 const base::string16& error_description, |
| 679 bool was_ignored_by_handler); | 680 bool was_ignored_by_handler); |
| 680 void OnDidCommitProvisionalLoad(const IPC::Message& msg); | 681 void OnDidCommitProvisionalLoad(const IPC::Message& msg); |
| 681 void OnUpdateState(const PageState& state); | 682 void OnUpdateState(const PageState& state); |
| (...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1144 | 1145 |
| 1145 // NOTE: This must be the last member. | 1146 // NOTE: This must be the last member. |
| 1146 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 1147 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
| 1147 | 1148 |
| 1148 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 1149 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
| 1149 }; | 1150 }; |
| 1150 | 1151 |
| 1151 } // namespace content | 1152 } // namespace content |
| 1152 | 1153 |
| 1153 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 1154 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| OLD | NEW |