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 510 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
521 void OnDidFailProvisionalLoadWithError( | 521 void OnDidFailProvisionalLoadWithError( |
522 const FrameHostMsg_DidFailProvisionalLoadWithError_Params& params); | 522 const FrameHostMsg_DidFailProvisionalLoadWithError_Params& params); |
523 void OnDidFailLoadWithError( | 523 void OnDidFailLoadWithError( |
524 const GURL& url, | 524 const GURL& url, |
525 int error_code, | 525 int error_code, |
526 const base::string16& error_description, | 526 const base::string16& error_description, |
527 bool was_ignored_by_handler); | 527 bool was_ignored_by_handler); |
528 void OnDidCommitProvisionalLoad(const IPC::Message& msg); | 528 void OnDidCommitProvisionalLoad(const IPC::Message& msg); |
529 void OnDidDropNavigation(); | 529 void OnDidDropNavigation(); |
530 void OnUpdateState(const PageState& state); | 530 void OnUpdateState(const PageState& state); |
| 531 void OnNavigateNewChildFrame(const std::string& unique_name); |
531 void OnBeforeUnloadACK( | 532 void OnBeforeUnloadACK( |
532 bool proceed, | 533 bool proceed, |
533 const base::TimeTicks& renderer_before_unload_start_time, | 534 const base::TimeTicks& renderer_before_unload_start_time, |
534 const base::TimeTicks& renderer_before_unload_end_time); | 535 const base::TimeTicks& renderer_before_unload_end_time); |
535 void OnSwapOutACK(); | 536 void OnSwapOutACK(); |
536 void OnRenderProcessGone(int status, int error_code); | 537 void OnRenderProcessGone(int status, int error_code); |
537 void OnContextMenu(const ContextMenuParams& params); | 538 void OnContextMenu(const ContextMenuParams& params); |
538 void OnJavaScriptExecuteResponse(int id, const base::ListValue& result); | 539 void OnJavaScriptExecuteResponse(int id, const base::ListValue& result); |
539 void OnVisualStateResponse(uint64 id); | 540 void OnVisualStateResponse(uint64 id); |
540 void OnRunJavaScriptMessage(const base::string16& message, | 541 void OnRunJavaScriptMessage(const base::string16& message, |
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
827 | 828 |
828 // NOTE: This must be the last member. | 829 // NOTE: This must be the last member. |
829 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 830 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
830 | 831 |
831 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 832 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
832 }; | 833 }; |
833 | 834 |
834 } // namespace content | 835 } // namespace content |
835 | 836 |
836 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 837 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
OLD | NEW |