| 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 <deque> | 8 #include <deque> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 924 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 935 void OnReplaceMisspelling(const string16& text); | 935 void OnReplaceMisspelling(const string16& text); |
| 936 void OnScrollFocusedEditableNodeIntoRect(const gfx::Rect& rect); | 936 void OnScrollFocusedEditableNodeIntoRect(const gfx::Rect& rect); |
| 937 void OnSelectAll(); | 937 void OnSelectAll(); |
| 938 void OnSelectRange(const gfx::Point& start, const gfx::Point& end); | 938 void OnSelectRange(const gfx::Point& start, const gfx::Point& end); |
| 939 void OnSetEditCommandsForNextKeyEvent(const EditCommands& edit_commands); | 939 void OnSetEditCommandsForNextKeyEvent(const EditCommands& edit_commands); |
| 940 void OnUndo(); | 940 void OnUndo(); |
| 941 void OnUnselect(); | 941 void OnUnselect(); |
| 942 | 942 |
| 943 void OnAllowBindings(int enabled_bindings_flags); | 943 void OnAllowBindings(int enabled_bindings_flags); |
| 944 void OnAllowScriptToClose(bool script_can_close); | 944 void OnAllowScriptToClose(bool script_can_close); |
| 945 void OnAsyncFileOpened(base::PlatformFileError error_code, | 945 void OnAsyncPepperFileOpened(base::PlatformFileError error_code, |
| 946 IPC::PlatformFileForTransit file_for_transit, | 946 IPC::PlatformFileForTransit file_for_transit, |
| 947 int message_id); | 947 int message_id); |
| 948 void OnPpapiBrokerChannelCreated(int request_id, | 948 void OnPpapiBrokerChannelCreated(int request_id, |
| 949 base::ProcessId broker_pid, | 949 base::ProcessId broker_pid, |
| 950 const IPC::ChannelHandle& handle); | 950 const IPC::ChannelHandle& handle); |
| 951 void OnPpapiBrokerPermissionResult(int request_id, bool result); | 951 void OnPpapiBrokerPermissionResult(int request_id, bool result); |
| 952 void OnCancelDownload(int32 download_id); | 952 void OnCancelDownload(int32 download_id); |
| 953 void OnClearFocusedNode(); | 953 void OnClearFocusedNode(); |
| 954 void OnClosePage(); | 954 void OnClosePage(); |
| 955 void OnContextMenuClosed(const CustomContextMenuContext& custom_context); | 955 void OnContextMenuClosed(const CustomContextMenuContext& custom_context); |
| 956 void OnShowContextMenu(const gfx::Point& location); | 956 void OnShowContextMenu(const gfx::Point& location); |
| 957 void OnCopyImageAt(int x, int y); | 957 void OnCopyImageAt(int x, int y); |
| (...skipping 600 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1558 // use the Observer interface to filter IPC messages and receive frame change | 1558 // use the Observer interface to filter IPC messages and receive frame change |
| 1559 // notifications. | 1559 // notifications. |
| 1560 // --------------------------------------------------------------------------- | 1560 // --------------------------------------------------------------------------- |
| 1561 | 1561 |
| 1562 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1562 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1563 }; | 1563 }; |
| 1564 | 1564 |
| 1565 } // namespace content | 1565 } // namespace content |
| 1566 | 1566 |
| 1567 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1567 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |