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