Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(202)

Side by Side Diff: content/common/view_messages.h

Issue 10828098: Upstreaming Select Action (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Oli's and Min's nits fixed Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 // Replaces all text in the current input field with the specified string.
978 IPC_MESSAGE_ROUTED0(ViewMsg_Unselect)
979
977 // Requests the renderer to select the region between two points. 980 // Requests the renderer to select the region between two points.
978 IPC_MESSAGE_ROUTED2(ViewMsg_SelectRange, 981 IPC_MESSAGE_ROUTED2(ViewMsg_SelectRange,
979 gfx::Point /* start */, 982 gfx::Point /* start */,
980 gfx::Point /* end */) 983 gfx::Point /* end */)
981 984
982 // Copies the image at location x, y to the clipboard (if there indeed is an 985 // Copies the image at location x, y to the clipboard (if there indeed is an
983 // image at that location). 986 // image at that location).
984 IPC_MESSAGE_ROUTED2(ViewMsg_CopyImageAt, 987 IPC_MESSAGE_ROUTED2(ViewMsg_CopyImageAt,
985 int /* x */, 988 int /* x */,
986 int /* y */) 989 int /* y */)
(...skipping 1180 matching lines...) Expand 10 before | Expand all | Expand 10 after
2167 // (according to the value of is_hung). The browser can give the user the 2170 // (according to the value of is_hung). The browser can give the user the
2168 // option of killing the plugin. 2171 // option of killing the plugin.
2169 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, 2172 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung,
2170 int /* plugin_child_id */, 2173 int /* plugin_child_id */,
2171 FilePath /* path */, 2174 FilePath /* path */,
2172 bool /* is_hung */) 2175 bool /* is_hung */)
2173 2176
2174 // Screen was rotated. Dispatched to the onorientationchange javascript API. 2177 // Screen was rotated. Dispatched to the onorientationchange javascript API.
2175 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, 2178 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent,
2176 int /* orientation */) 2179 int /* orientation */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698