| 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 458 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 469 const GURL& url, | 469 const GURL& url, |
| 470 int error_code, | 470 int error_code, |
| 471 const base::string16& error_description); | 471 const base::string16& error_description); |
| 472 void OnDidCommitProvisionalLoad(const IPC::Message& msg); | 472 void OnDidCommitProvisionalLoad(const IPC::Message& msg); |
| 473 void OnDidDropNavigation(); | 473 void OnDidDropNavigation(); |
| 474 void OnBeforeUnloadACK( | 474 void OnBeforeUnloadACK( |
| 475 bool proceed, | 475 bool proceed, |
| 476 const base::TimeTicks& renderer_before_unload_start_time, | 476 const base::TimeTicks& renderer_before_unload_start_time, |
| 477 const base::TimeTicks& renderer_before_unload_end_time); | 477 const base::TimeTicks& renderer_before_unload_end_time); |
| 478 void OnSwapOutACK(); | 478 void OnSwapOutACK(); |
| 479 void OnRenderProcessGone(int status, int error_code); |
| 479 void OnContextMenu(const ContextMenuParams& params); | 480 void OnContextMenu(const ContextMenuParams& params); |
| 480 void OnJavaScriptExecuteResponse(int id, const base::ListValue& result); | 481 void OnJavaScriptExecuteResponse(int id, const base::ListValue& result); |
| 481 void OnFlushVisualStateResponse(uint64 id); | 482 void OnFlushVisualStateResponse(uint64 id); |
| 482 void OnRunJavaScriptMessage(const base::string16& message, | 483 void OnRunJavaScriptMessage(const base::string16& message, |
| 483 const base::string16& default_prompt, | 484 const base::string16& default_prompt, |
| 484 const GURL& frame_url, | 485 const GURL& frame_url, |
| 485 JavaScriptMessageType type, | 486 JavaScriptMessageType type, |
| 486 IPC::Message* reply_msg); | 487 IPC::Message* reply_msg); |
| 487 void OnRunBeforeUnloadConfirm(const GURL& frame_url, | 488 void OnRunBeforeUnloadConfirm(const GURL& frame_url, |
| 488 const base::string16& message, | 489 const base::string16& message, |
| (...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 703 | 704 |
| 704 // NOTE: This must be the last member. | 705 // NOTE: This must be the last member. |
| 705 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 706 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
| 706 | 707 |
| 707 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 708 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
| 708 }; | 709 }; |
| 709 | 710 |
| 710 } // namespace content | 711 } // namespace content |
| 711 | 712 |
| 712 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 713 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| OLD | NEW |