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 488 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
499 void OnAddMessageToConsole(int32 level, | 499 void OnAddMessageToConsole(int32 level, |
500 const base::string16& message, | 500 const base::string16& message, |
501 int32 line_no, | 501 int32 line_no, |
502 const base::string16& source_id); | 502 const base::string16& source_id); |
503 void OnDetach(); | 503 void OnDetach(); |
504 void OnFrameFocused(); | 504 void OnFrameFocused(); |
505 void OnOpenURL(const FrameHostMsg_OpenURL_Params& params); | 505 void OnOpenURL(const FrameHostMsg_OpenURL_Params& params); |
506 void OnDocumentOnLoadCompleted( | 506 void OnDocumentOnLoadCompleted( |
507 FrameMsg_UILoadMetricsReportType::Value report_type, | 507 FrameMsg_UILoadMetricsReportType::Value report_type, |
508 base::TimeTicks ui_timestamp); | 508 base::TimeTicks ui_timestamp); |
509 void OnDidStartProvisionalLoadForFrame(const GURL& url); | 509 void OnDidStartProvisionalLoadForFrame( |
| 510 const GURL& url, |
| 511 const base::TimeTicks& navigation_start); |
510 void OnDidFailProvisionalLoadWithError( | 512 void OnDidFailProvisionalLoadWithError( |
511 const FrameHostMsg_DidFailProvisionalLoadWithError_Params& params); | 513 const FrameHostMsg_DidFailProvisionalLoadWithError_Params& params); |
512 void OnDidFailLoadWithError( | 514 void OnDidFailLoadWithError( |
513 const GURL& url, | 515 const GURL& url, |
514 int error_code, | 516 int error_code, |
515 const base::string16& error_description, | 517 const base::string16& error_description, |
516 bool was_ignored_by_handler); | 518 bool was_ignored_by_handler); |
517 void OnDidCommitProvisionalLoad(const IPC::Message& msg); | 519 void OnDidCommitProvisionalLoad(const IPC::Message& msg); |
518 void OnDidDropNavigation(); | 520 void OnDidDropNavigation(); |
519 void OnBeforeUnloadACK( | 521 void OnBeforeUnloadACK( |
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
798 | 800 |
799 // NOTE: This must be the last member. | 801 // NOTE: This must be the last member. |
800 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 802 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
801 | 803 |
802 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 804 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
803 }; | 805 }; |
804 | 806 |
805 } // namespace content | 807 } // namespace content |
806 | 808 |
807 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 809 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
OLD | NEW |