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 // IPC messages for page rendering. | 5 // IPC messages for page rendering. |
6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
7 | 7 |
8 #include "base/process.h" | 8 #include "base/process.h" |
9 #include "base/shared_memory.h" | 9 #include "base/shared_memory.h" |
10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
(...skipping 956 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
967 #endif | 967 #endif |
968 IPC_MESSAGE_ROUTED0(ViewMsg_Paste) | 968 IPC_MESSAGE_ROUTED0(ViewMsg_Paste) |
969 IPC_MESSAGE_ROUTED0(ViewMsg_PasteAndMatchStyle) | 969 IPC_MESSAGE_ROUTED0(ViewMsg_PasteAndMatchStyle) |
970 // Replaces the selected region or a word around the cursor with the | 970 // Replaces the selected region or a word around the cursor with the |
971 // specified string. | 971 // specified string. |
972 IPC_MESSAGE_ROUTED1(ViewMsg_Replace, | 972 IPC_MESSAGE_ROUTED1(ViewMsg_Replace, |
973 string16) | 973 string16) |
974 IPC_MESSAGE_ROUTED0(ViewMsg_Delete) | 974 IPC_MESSAGE_ROUTED0(ViewMsg_Delete) |
975 IPC_MESSAGE_ROUTED0(ViewMsg_SelectAll) | 975 IPC_MESSAGE_ROUTED0(ViewMsg_SelectAll) |
976 | 976 |
977 #if defined(OS_ANDROID) | |
olilan
2012/07/31 18:24:08
I don't think this needs to be OS_ANDROID only.
aurimas (slooooooooow)
2012/07/31 21:12:14
Done.
| |
978 // Replaces all text in the current input field with the specified string. | |
979 IPC_MESSAGE_ROUTED0(ViewMsg_Unselect) | |
980 #endif | |
981 | |
977 // Requests the renderer to select the region between two points. | 982 // Requests the renderer to select the region between two points. |
978 IPC_MESSAGE_ROUTED2(ViewMsg_SelectRange, | 983 IPC_MESSAGE_ROUTED2(ViewMsg_SelectRange, |
979 gfx::Point /* start */, | 984 gfx::Point /* start */, |
980 gfx::Point /* end */) | 985 gfx::Point /* end */) |
981 | 986 |
982 // Copies the image at location x, y to the clipboard (if there indeed is an | 987 // Copies the image at location x, y to the clipboard (if there indeed is an |
983 // image at that location). | 988 // image at that location). |
984 IPC_MESSAGE_ROUTED2(ViewMsg_CopyImageAt, | 989 IPC_MESSAGE_ROUTED2(ViewMsg_CopyImageAt, |
985 int /* x */, | 990 int /* x */, |
986 int /* y */) | 991 int /* y */) |
(...skipping 1180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2167 // (according to the value of is_hung). The browser can give the user the | 2172 // (according to the value of is_hung). The browser can give the user the |
2168 // option of killing the plugin. | 2173 // option of killing the plugin. |
2169 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, | 2174 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, |
2170 int /* plugin_child_id */, | 2175 int /* plugin_child_id */, |
2171 FilePath /* path */, | 2176 FilePath /* path */, |
2172 bool /* is_hung */) | 2177 bool /* is_hung */) |
2173 | 2178 |
2174 // Screen was rotated. Dispatched to the onorientationchange javascript API. | 2179 // Screen was rotated. Dispatched to the onorientationchange javascript API. |
2175 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, | 2180 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, |
2176 int /* orientation */) | 2181 int /* orientation */) |
OLD | NEW |