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