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