| 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 613 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 624 const base::string16& message, | 624 const base::string16& message, |
| 625 int32_t line_no, | 625 int32_t line_no, |
| 626 const base::string16& source_id); | 626 const base::string16& source_id); |
| 627 void OnDetach(); | 627 void OnDetach(); |
| 628 void OnFrameFocused(); | 628 void OnFrameFocused(); |
| 629 void OnOpenURL(const FrameHostMsg_OpenURL_Params& params); | 629 void OnOpenURL(const FrameHostMsg_OpenURL_Params& params); |
| 630 void OnCancelInitialHistoryLoad(); | 630 void OnCancelInitialHistoryLoad(); |
| 631 void OnDocumentOnLoadCompleted( | 631 void OnDocumentOnLoadCompleted( |
| 632 FrameMsg_UILoadMetricsReportType::Value report_type, | 632 FrameMsg_UILoadMetricsReportType::Value report_type, |
| 633 base::TimeTicks ui_timestamp); | 633 base::TimeTicks ui_timestamp); |
| 634 void OnDidStartProvisionalLoad(const GURL& url, | 634 void OnDidStartProvisionalLoad( |
| 635 const base::TimeTicks& navigation_start, | 635 const GURL& url, |
| 636 NavigationGesture gesture); | 636 const base::TimeTicks& navigation_start); |
| 637 void OnDidFailProvisionalLoadWithError( | 637 void OnDidFailProvisionalLoadWithError( |
| 638 const FrameHostMsg_DidFailProvisionalLoadWithError_Params& params); | 638 const FrameHostMsg_DidFailProvisionalLoadWithError_Params& params); |
| 639 void OnDidFailLoadWithError( | 639 void OnDidFailLoadWithError( |
| 640 const GURL& url, | 640 const GURL& url, |
| 641 int error_code, | 641 int error_code, |
| 642 const base::string16& error_description, | 642 const base::string16& error_description, |
| 643 bool was_ignored_by_handler); | 643 bool was_ignored_by_handler); |
| 644 void OnDidCommitProvisionalLoad(const IPC::Message& msg); | 644 void OnDidCommitProvisionalLoad(const IPC::Message& msg); |
| 645 void OnUpdateState(const PageState& state); | 645 void OnUpdateState(const PageState& state); |
| 646 void OnBeforeUnloadACK( | 646 void OnBeforeUnloadACK( |
| (...skipping 443 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1090 remote_associated_interfaces_; | 1090 remote_associated_interfaces_; |
| 1091 // NOTE: This must be the last member. | 1091 // NOTE: This must be the last member. |
| 1092 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 1092 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
| 1093 | 1093 |
| 1094 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 1094 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
| 1095 }; | 1095 }; |
| 1096 | 1096 |
| 1097 } // namespace content | 1097 } // namespace content |
| 1098 | 1098 |
| 1099 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 1099 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| OLD | NEW |