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

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

Issue 8920005: Add TestingInstance::EvalScript method which posts a message that the test page can eval(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 961 matching lines...) Expand 10 before | Expand all | Expand 10 after
972 ppapi::HostResource /* device_context_2d */, 972 ppapi::HostResource /* device_context_2d */,
973 ppapi::HostResource /* image */, 973 ppapi::HostResource /* image */,
974 PP_Point /* top_left */, 974 PP_Point /* top_left */,
975 PP_Bool /* result */) 975 PP_Bool /* result */)
976 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBTesting_GetLiveObjectsForInstance, 976 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBTesting_GetLiveObjectsForInstance,
977 PP_Instance /* instance */, 977 PP_Instance /* instance */,
978 uint32 /* result */) 978 uint32 /* result */)
979 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBTesting_SimulateInputEvent, 979 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBTesting_SimulateInputEvent,
980 PP_Instance /* instance */, 980 PP_Instance /* instance */,
981 ppapi::InputEventData /* input_event */) 981 ppapi::InputEventData /* input_event */)
982 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBTesting_ExecuteScript,
983 PP_Instance /* instance */,
984 ppapi::proxy::SerializedVar /* script */,
985 ppapi::proxy::SerializedVar /* out_exception */,
986 ppapi::proxy::SerializedVar /* result */)
982 987
983 // PPB_TextInput. 988 // PPB_TextInput.
984 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBTextInput_SetTextInputType, 989 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBTextInput_SetTextInputType,
985 PP_Instance /* instance */, 990 PP_Instance /* instance */,
986 PP_TextInput_Type /* type */) 991 PP_TextInput_Type /* type */)
987 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBTextInput_UpdateCaretPosition, 992 IPC_MESSAGE_ROUTED3(PpapiHostMsg_PPBTextInput_UpdateCaretPosition,
988 PP_Instance /* instance */, 993 PP_Instance /* instance */,
989 PP_Rect /* caret */, 994 PP_Rect /* caret */,
990 PP_Rect /* bounding_box */) 995 PP_Rect /* bounding_box */)
991 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBTextInput_CancelCompositionText, 996 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBTextInput_CancelCompositionText,
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
1116 std::vector<PP_PictureBuffer_Dev> /* picture buffers */) 1121 std::vector<PP_PictureBuffer_Dev> /* picture buffers */)
1117 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer, 1122 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBVideoDecoder_ReusePictureBuffer,
1118 ppapi::HostResource /* video_decoder */, 1123 ppapi::HostResource /* video_decoder */,
1119 int32_t /* picture buffer id */) 1124 int32_t /* picture buffer id */)
1120 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush, 1125 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Flush,
1121 ppapi::HostResource /* video_decoder */) 1126 ppapi::HostResource /* video_decoder */)
1122 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset, 1127 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBVideoDecoder_Reset,
1123 ppapi::HostResource /* video_decoder */) 1128 ppapi::HostResource /* video_decoder */)
1124 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy, 1129 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBVideoDecoder_Destroy,
1125 ppapi::HostResource /* video_decoder */) 1130 ppapi::HostResource /* video_decoder */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698