| 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(const GURL& url, |
| 510 double navigation_start); |
| 510 void OnDidFailProvisionalLoadWithError( | 511 void OnDidFailProvisionalLoadWithError( |
| 511 const FrameHostMsg_DidFailProvisionalLoadWithError_Params& params); | 512 const FrameHostMsg_DidFailProvisionalLoadWithError_Params& params); |
| 512 void OnDidFailLoadWithError( | 513 void OnDidFailLoadWithError( |
| 513 const GURL& url, | 514 const GURL& url, |
| 514 int error_code, | 515 int error_code, |
| 515 const base::string16& error_description, | 516 const base::string16& error_description, |
| 516 bool was_ignored_by_handler); | 517 bool was_ignored_by_handler); |
| 517 void OnDidCommitProvisionalLoad(const IPC::Message& msg); | 518 void OnDidCommitProvisionalLoad(const IPC::Message& msg); |
| 518 void OnDidDropNavigation(); | 519 void OnDidDropNavigation(); |
| 519 void OnBeforeUnloadACK( | 520 void OnBeforeUnloadACK( |
| (...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 798 | 799 |
| 799 // NOTE: This must be the last member. | 800 // NOTE: This must be the last member. |
| 800 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 801 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
| 801 | 802 |
| 802 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 803 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
| 803 }; | 804 }; |
| 804 | 805 |
| 805 } // namespace content | 806 } // namespace content |
| 806 | 807 |
| 807 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 808 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| OLD | NEW |