| 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 441 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 452 const GURL& url, | 452 const GURL& url, |
| 453 int error_code, | 453 int error_code, |
| 454 const base::string16& error_description); | 454 const base::string16& error_description); |
| 455 void OnDidCommitProvisionalLoad(const IPC::Message& msg); | 455 void OnDidCommitProvisionalLoad(const IPC::Message& msg); |
| 456 void OnDidDropNavigation(); | 456 void OnDidDropNavigation(); |
| 457 void OnBeforeUnloadACK( | 457 void OnBeforeUnloadACK( |
| 458 bool proceed, | 458 bool proceed, |
| 459 const base::TimeTicks& renderer_before_unload_start_time, | 459 const base::TimeTicks& renderer_before_unload_start_time, |
| 460 const base::TimeTicks& renderer_before_unload_end_time); | 460 const base::TimeTicks& renderer_before_unload_end_time); |
| 461 void OnSwapOutACK(); | 461 void OnSwapOutACK(); |
| 462 void OnRenderProcessGone(int status, int error_code); |
| 462 void OnContextMenu(const ContextMenuParams& params); | 463 void OnContextMenu(const ContextMenuParams& params); |
| 463 void OnJavaScriptExecuteResponse(int id, const base::ListValue& result); | 464 void OnJavaScriptExecuteResponse(int id, const base::ListValue& result); |
| 464 void OnRunJavaScriptMessage(const base::string16& message, | 465 void OnRunJavaScriptMessage(const base::string16& message, |
| 465 const base::string16& default_prompt, | 466 const base::string16& default_prompt, |
| 466 const GURL& frame_url, | 467 const GURL& frame_url, |
| 467 JavaScriptMessageType type, | 468 JavaScriptMessageType type, |
| 468 IPC::Message* reply_msg); | 469 IPC::Message* reply_msg); |
| 469 void OnRunBeforeUnloadConfirm(const GURL& frame_url, | 470 void OnRunBeforeUnloadConfirm(const GURL& frame_url, |
| 470 const base::string16& message, | 471 const base::string16& message, |
| 471 bool is_reload, | 472 bool is_reload, |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 667 | 668 |
| 668 // NOTE: This must be the last member. | 669 // NOTE: This must be the last member. |
| 669 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 670 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
| 670 | 671 |
| 671 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 672 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
| 672 }; | 673 }; |
| 673 | 674 |
| 674 } // namespace content | 675 } // namespace content |
| 675 | 676 |
| 676 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 677 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| OLD | NEW |