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

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

Issue 10170014: Move text input API to Instance. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
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 881 matching lines...) Expand 10 before | Expand all | Expand 10 after
892 PP_Instance /* active */, 892 PP_Instance /* active */,
893 ppapi::proxy::SerializedVar /* result */) 893 ppapi::proxy::SerializedVar /* result */)
894 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_GetPluginInstanceURL, 894 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBInstance_GetPluginInstanceURL,
895 PP_Instance /* active */, 895 PP_Instance /* active */,
896 ppapi::proxy::SerializedVar /* result */) 896 ppapi::proxy::SerializedVar /* result */)
897 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBInstance_SetCursor, 897 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBInstance_SetCursor,
898 PP_Instance /* instance */, 898 PP_Instance /* instance */,
899 int32_t /* type */, 899 int32_t /* type */,
900 ppapi::HostResource /* custom_image */, 900 ppapi::HostResource /* custom_image */,
901 PP_Point /* hot_spot */) 901 PP_Point /* hot_spot */)
902 902 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBInstance_SetTextInputType,
903 // PPB_TextInput.
904 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBTextInput_SetTextInputType,
905 PP_Instance /* instance */, 903 PP_Instance /* instance */,
906 PP_TextInput_Type /* type */) 904 PP_TextInput_Type /* type */)
907 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBTextInput_UpdateCaretPosition, 905 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBInstance_UpdateCaretPosition,
908 PP_Instance /* instance */, 906 PP_Instance /* instance */,
909 PP_Rect /* caret */, 907 PP_Rect /* caret */,
910 PP_Rect /* bounding_box */) 908 PP_Rect /* bounding_box */)
911 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBTextInput_CancelCompositionText, 909 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBInstance_CancelCompositionText,
912 PP_Instance /* instance */) 910 PP_Instance /* instance */)
913 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBTextInput_UpdateSurroundingText, 911 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBInstance_UpdateSurroundingText,
914 PP_Instance /* instance */, 912 PP_Instance /* instance */,
915 std::string /* text */, 913 std::string /* text */,
916 uint32_t /* caret */, 914 uint32_t /* caret */,
917 uint32_t /* anchor */) 915 uint32_t /* anchor */)
918 916
919 // PPB_URLLoader. 917 // PPB_URLLoader.
920 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBURLLoader_Create, 918 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBURLLoader_Create,
921 PP_Instance /* instance */, 919 PP_Instance /* instance */,
922 ppapi::HostResource /* result */) 920 ppapi::HostResource /* result */)
923 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBURLLoader_Open, 921 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBURLLoader_Open,
(...skipping 403 matching lines...) Expand 10 before | Expand all | Expand 10 after
1327 // PPB_X509Certificate_Private 1325 // PPB_X509Certificate_Private
1328 IPC_SYNC_MESSAGE_CONTROL1_2(PpapiHostMsg_PPBX509Certificate_ParseDER, 1326 IPC_SYNC_MESSAGE_CONTROL1_2(PpapiHostMsg_PPBX509Certificate_ParseDER,
1329 std::vector<char> /* der */, 1327 std::vector<char> /* der */,
1330 bool /* succeeded */, 1328 bool /* succeeded */,
1331 ppapi::PPB_X509Certificate_Fields /* result */) 1329 ppapi::PPB_X509Certificate_Fields /* result */)
1332 1330
1333 // PPB_Font. 1331 // PPB_Font.
1334 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies, 1332 IPC_SYNC_MESSAGE_CONTROL0_1(PpapiHostMsg_PPBFont_GetFontFamilies,
1335 std::string /* result */) 1333 std::string /* result */)
1336 #endif // !defined(OS_NACL) 1334 #endif // !defined(OS_NACL)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698