| 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 500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 511 void OnAddMessageToConsole(int32 level, | 511 void OnAddMessageToConsole(int32 level, |
| 512 const base::string16& message, | 512 const base::string16& message, |
| 513 int32 line_no, | 513 int32 line_no, |
| 514 const base::string16& source_id); | 514 const base::string16& source_id); |
| 515 void OnDetach(); | 515 void OnDetach(); |
| 516 void OnFrameFocused(); | 516 void OnFrameFocused(); |
| 517 void OnOpenURL(const FrameHostMsg_OpenURL_Params& params); | 517 void OnOpenURL(const FrameHostMsg_OpenURL_Params& params); |
| 518 void OnDocumentOnLoadCompleted( | 518 void OnDocumentOnLoadCompleted( |
| 519 FrameMsg_UILoadMetricsReportType::Value report_type, | 519 FrameMsg_UILoadMetricsReportType::Value report_type, |
| 520 base::TimeTicks ui_timestamp); | 520 base::TimeTicks ui_timestamp); |
| 521 void OnDidStartProvisionalLoadForFrame(const GURL& url); | 521 void OnDidStartProvisionalLoadForFrame( |
| 522 const GURL& url, |
| 523 const base::TimeTicks& navigation_start); |
| 522 void OnDidFailProvisionalLoadWithError( | 524 void OnDidFailProvisionalLoadWithError( |
| 523 const FrameHostMsg_DidFailProvisionalLoadWithError_Params& params); | 525 const FrameHostMsg_DidFailProvisionalLoadWithError_Params& params); |
| 524 void OnDidFailLoadWithError( | 526 void OnDidFailLoadWithError( |
| 525 const GURL& url, | 527 const GURL& url, |
| 526 int error_code, | 528 int error_code, |
| 527 const base::string16& error_description, | 529 const base::string16& error_description, |
| 528 bool was_ignored_by_handler); | 530 bool was_ignored_by_handler); |
| 529 void OnDidCommitProvisionalLoad(const IPC::Message& msg); | 531 void OnDidCommitProvisionalLoad(const IPC::Message& msg); |
| 530 void OnDidDropNavigation(); | 532 void OnDidDropNavigation(); |
| 531 void OnBeforeUnloadACK( | 533 void OnBeforeUnloadACK( |
| (...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 827 | 829 |
| 828 // NOTE: This must be the last member. | 830 // NOTE: This must be the last member. |
| 829 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 831 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
| 830 | 832 |
| 831 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 833 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
| 832 }; | 834 }; |
| 833 | 835 |
| 834 } // namespace content | 836 } // namespace content |
| 835 | 837 |
| 836 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 838 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| OLD | NEW |