| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 702 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 713 void OnSwapOutACK(); | 713 void OnSwapOutACK(); |
| 714 void OnRenderProcessGone(int status, int error_code); | 714 void OnRenderProcessGone(int status, int error_code); |
| 715 void OnContextMenu(const ContextMenuParams& params); | 715 void OnContextMenu(const ContextMenuParams& params); |
| 716 void OnJavaScriptExecuteResponse(int id, const base::ListValue& result); | 716 void OnJavaScriptExecuteResponse(int id, const base::ListValue& result); |
| 717 void OnVisualStateResponse(uint64_t id); | 717 void OnVisualStateResponse(uint64_t id); |
| 718 void OnRunJavaScriptDialog(const base::string16& message, | 718 void OnRunJavaScriptDialog(const base::string16& message, |
| 719 const base::string16& default_prompt, | 719 const base::string16& default_prompt, |
| 720 const GURL& frame_url, | 720 const GURL& frame_url, |
| 721 JavaScriptDialogType dialog_type, | 721 JavaScriptDialogType dialog_type, |
| 722 IPC::Message* reply_msg); | 722 IPC::Message* reply_msg); |
| 723 void OnRunBeforeUnloadConfirm(const GURL& frame_url, | 723 void OnRunBeforeUnloadConfirm(bool is_reload, IPC::Message* reply_msg); |
| 724 bool is_reload, | |
| 725 IPC::Message* reply_msg); | |
| 726 void OnRunFileChooser(const FileChooserParams& params); | 724 void OnRunFileChooser(const FileChooserParams& params); |
| 727 void OnTextSurroundingSelectionResponse(const base::string16& content, | 725 void OnTextSurroundingSelectionResponse(const base::string16& content, |
| 728 uint32_t start_offset, | 726 uint32_t start_offset, |
| 729 uint32_t end_offset); | 727 uint32_t end_offset); |
| 730 void OnDidAccessInitialDocument(); | 728 void OnDidAccessInitialDocument(); |
| 731 void OnDidChangeOpener(int32_t opener_routing_id); | 729 void OnDidChangeOpener(int32_t opener_routing_id); |
| 732 void OnDidChangeName(const std::string& name, const std::string& unique_name); | 730 void OnDidChangeName(const std::string& name, const std::string& unique_name); |
| 733 void OnDidSetFeaturePolicyHeader( | 731 void OnDidSetFeaturePolicyHeader( |
| 734 const ParsedFeaturePolicyHeader& parsed_header); | 732 const ParsedFeaturePolicyHeader& parsed_header); |
| 735 | 733 |
| (...skipping 482 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1218 | 1216 |
| 1219 // NOTE: This must be the last member. | 1217 // NOTE: This must be the last member. |
| 1220 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 1218 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
| 1221 | 1219 |
| 1222 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 1220 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
| 1223 }; | 1221 }; |
| 1224 | 1222 |
| 1225 } // namespace content | 1223 } // namespace content |
| 1226 | 1224 |
| 1227 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 1225 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| OLD | NEW |