OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_RENDERER_RENDER_VIEW_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 890 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
901 // | 901 // |
902 // The documentation for these functions should be in | 902 // The documentation for these functions should be in |
903 // render_messages_internal.h for the message that the function is handling. | 903 // render_messages_internal.h for the message that the function is handling. |
904 | 904 |
905 void OnAllowBindings(int enabled_bindings_flags); | 905 void OnAllowBindings(int enabled_bindings_flags); |
906 void OnAllowScriptToClose(bool script_can_close); | 906 void OnAllowScriptToClose(bool script_can_close); |
907 void OnAsyncFileOpened(base::PlatformFileError error_code, | 907 void OnAsyncFileOpened(base::PlatformFileError error_code, |
908 IPC::PlatformFileForTransit file_for_transit, | 908 IPC::PlatformFileForTransit file_for_transit, |
909 int message_id); | 909 int message_id); |
910 void OnPpapiBrokerChannelCreated(int request_id, | 910 void OnPpapiBrokerChannelCreated(int request_id, |
| 911 base::ProcessId broker_pid, |
911 const IPC::ChannelHandle& handle); | 912 const IPC::ChannelHandle& handle); |
912 void OnPpapiBrokerPermissionResult(int request_id, bool result); | 913 void OnPpapiBrokerPermissionResult(int request_id, bool result); |
913 void OnCancelDownload(int32 download_id); | 914 void OnCancelDownload(int32 download_id); |
914 void OnClearFocusedNode(); | 915 void OnClearFocusedNode(); |
915 void OnClosePage(); | 916 void OnClosePage(); |
916 void OnContextMenuClosed(const CustomContextMenuContext& custom_context); | 917 void OnContextMenuClosed(const CustomContextMenuContext& custom_context); |
917 void OnCopy(); | 918 void OnCopy(); |
918 void OnCopyImageAt(int x, int y); | 919 void OnCopyImageAt(int x, int y); |
919 void OnCut(); | 920 void OnCut(); |
920 void OnCSSInsertRequest(const string16& frame_xpath, | 921 void OnCSSInsertRequest(const string16& frame_xpath, |
(...skipping 665 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1586 // use the Observer interface to filter IPC messages and receive frame change | 1587 // use the Observer interface to filter IPC messages and receive frame change |
1587 // notifications. | 1588 // notifications. |
1588 // --------------------------------------------------------------------------- | 1589 // --------------------------------------------------------------------------- |
1589 | 1590 |
1590 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1591 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1591 }; | 1592 }; |
1592 | 1593 |
1593 } // namespace content | 1594 } // namespace content |
1594 | 1595 |
1595 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1596 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |