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 513 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
524 void OnAddMessageToConsole(int32 level, | 524 void OnAddMessageToConsole(int32 level, |
525 const base::string16& message, | 525 const base::string16& message, |
526 int32 line_no, | 526 int32 line_no, |
527 const base::string16& source_id); | 527 const base::string16& source_id); |
528 void OnDetach(); | 528 void OnDetach(); |
529 void OnFrameFocused(); | 529 void OnFrameFocused(); |
530 void OnOpenURL(const FrameHostMsg_OpenURL_Params& params); | 530 void OnOpenURL(const FrameHostMsg_OpenURL_Params& params); |
531 void OnDocumentOnLoadCompleted( | 531 void OnDocumentOnLoadCompleted( |
532 FrameMsg_UILoadMetricsReportType::Value report_type, | 532 FrameMsg_UILoadMetricsReportType::Value report_type, |
533 base::TimeTicks ui_timestamp); | 533 base::TimeTicks ui_timestamp); |
534 void OnDidStartProvisionalLoadForFrame(const GURL& url); | 534 void OnDidStartProvisionalLoadForFrame( |
| 535 const GURL& url, |
| 536 const base::TimeTicks& navigation_start); |
535 void OnDidFailProvisionalLoadWithError( | 537 void OnDidFailProvisionalLoadWithError( |
536 const FrameHostMsg_DidFailProvisionalLoadWithError_Params& params); | 538 const FrameHostMsg_DidFailProvisionalLoadWithError_Params& params); |
537 void OnDidFailLoadWithError( | 539 void OnDidFailLoadWithError( |
538 const GURL& url, | 540 const GURL& url, |
539 int error_code, | 541 int error_code, |
540 const base::string16& error_description, | 542 const base::string16& error_description, |
541 bool was_ignored_by_handler); | 543 bool was_ignored_by_handler); |
542 void OnDidCommitProvisionalLoad(const IPC::Message& msg); | 544 void OnDidCommitProvisionalLoad(const IPC::Message& msg); |
543 void OnDidDropNavigation(); | 545 void OnDidDropNavigation(); |
544 void OnUpdateState(const PageState& state); | 546 void OnUpdateState(const PageState& state); |
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
850 | 852 |
851 // NOTE: This must be the last member. | 853 // NOTE: This must be the last member. |
852 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 854 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
853 | 855 |
854 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 856 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
855 }; | 857 }; |
856 | 858 |
857 } // namespace content | 859 } // namespace content |
858 | 860 |
859 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 861 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
OLD | NEW |