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

Side by Side Diff: ppapi/proxy/ppapi_messages.h

Issue 10053017: Request text context in the plugin process (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review comment Created 8 years, 8 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
« no previous file with comments | « no previous file | ppapi/proxy/ppb_text_input_proxy.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 // Multiply-included message header, no traditional include guard. 5 // Multiply-included message header, no traditional include guard.
6 #include <string> 6 #include <string>
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/file_path.h" 10 #include "base/file_path.h"
(...skipping 954 matching lines...) Expand 10 before | Expand all | Expand 10 after
965 // PPB_TextInput. 965 // PPB_TextInput.
966 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBTextInput_SetTextInputType, 966 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBTextInput_SetTextInputType,
967 PP_Instance /* instance */, 967 PP_Instance /* instance */,
968 PP_TextInput_Type /* type */) 968 PP_TextInput_Type /* type */)
969 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBTextInput_UpdateCaretPosition, 969 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBTextInput_UpdateCaretPosition,
970 PP_Instance /* instance */, 970 PP_Instance /* instance */,
971 PP_Rect /* caret */, 971 PP_Rect /* caret */,
972 PP_Rect /* bounding_box */) 972 PP_Rect /* bounding_box */)
973 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBTextInput_CancelCompositionText, 973 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBTextInput_CancelCompositionText,
974 PP_Instance /* instance */) 974 PP_Instance /* instance */)
975 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBTextInput_SelectionChanged,
976 PP_Instance /* instance */)
977 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBTextInput_UpdateSurroundingText, 975 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBTextInput_UpdateSurroundingText,
978 PP_Instance /* instance */, 976 PP_Instance /* instance */,
979 std::string /* text */, 977 std::string /* text */,
980 uint32_t /* caret */, 978 uint32_t /* caret */,
981 uint32_t /* anchor */) 979 uint32_t /* anchor */)
982 980
983 // PPB_URLLoader. 981 // PPB_URLLoader.
984 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBURLLoader_Create, 982 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBURLLoader_Create,
985 PP_Instance /* instance */, 983 PP_Instance /* instance */,
986 ppapi::HostResource /* result */) 984 ppapi::HostResource /* result */)
(...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after
1305 // PPB_X509Certificate_Private 1303 // PPB_X509Certificate_Private
1306 IPC_SYNC_MESSAGE_CONTROL1_2(PpapiHostMsg_PPBX509Certificate_ParseDER, 1304 IPC_SYNC_MESSAGE_CONTROL1_2(PpapiHostMsg_PPBX509Certificate_ParseDER,
1307 std::vector<char> /* der */, 1305 std::vector<char> /* der */,
1308 bool /* succeeded */, 1306 bool /* succeeded */,
1309 ppapi::PPB_X509Certificate_Fields /* result */) 1307 ppapi::PPB_X509Certificate_Fields /* result */)
1310 1308
1311 // PPB_Font. 1309 // PPB_Font.
1312 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies, 1310 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies,
1313 std::string /* result */) 1311 std::string /* result */)
1314 #endif // !defined(OS_NACL) 1312 #endif // !defined(OS_NACL)
OLDNEW
« no previous file with comments | « no previous file | ppapi/proxy/ppb_text_input_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698