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

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

Issue 7452002: Remove HandleInputEvent from PPP_Instance and freeze to 1.0. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: copyright Created 9 years, 5 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 | « ppapi/proxy/dispatcher.cc ('k') | ppapi/proxy/ppapi_param_traits.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) 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 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
286 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiMsg_PPPInstance_DidDestroy, 286 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiMsg_PPPInstance_DidDestroy,
287 PP_Instance /* instance */) 287 PP_Instance /* instance */)
288 IPC_MESSAGE_ROUTED4(PpapiMsg_PPPInstance_DidChangeView, 288 IPC_MESSAGE_ROUTED4(PpapiMsg_PPPInstance_DidChangeView,
289 PP_Instance /* instance */, 289 PP_Instance /* instance */,
290 PP_Rect /* position */, 290 PP_Rect /* position */,
291 PP_Rect /* clip */, 291 PP_Rect /* clip */,
292 PP_Bool /* fullscreen */) 292 PP_Bool /* fullscreen */)
293 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPInstance_DidChangeFocus, 293 IPC_MESSAGE_ROUTED2(PpapiMsg_PPPInstance_DidChangeFocus,
294 PP_Instance /* instance */, 294 PP_Instance /* instance */,
295 PP_Bool /* has_focus */) 295 PP_Bool /* has_focus */)
296 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiMsg_PPPInstance_HandleInputEvent,
297 PP_Instance /* instance */,
298 PP_InputEvent /* event */,
299 PP_Bool /* result */)
300 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiMsg_PPPInstance_HandleDocumentLoad, 296 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiMsg_PPPInstance_HandleDocumentLoad,
301 PP_Instance /* instance */, 297 PP_Instance /* instance */,
302 pp::proxy::HostResource /* url_loader */, 298 pp::proxy::HostResource /* url_loader */,
303 PP_Bool /* result */) 299 PP_Bool /* result */)
304 300
305 // PPP_Instance_Private. 301 // PPP_Instance_Private.
306 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiMsg_PPPInstancePrivate_GetInstanceObject, 302 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiMsg_PPPInstancePrivate_GetInstanceObject,
307 PP_Instance /* instance */, 303 PP_Instance /* instance */,
308 pp::proxy::SerializedVar /* result */) 304 pp::proxy::SerializedVar /* result */)
309 305
(...skipping 588 matching lines...) Expand 10 before | Expand all | Expand 10 after
898 PP_Bool /* is_always_opaque */, 894 PP_Bool /* is_always_opaque */,
899 pp::proxy::HostResource /* result */) 895 pp::proxy::HostResource /* result */)
900 IPC_SYNC_MESSAGE_ROUTED4_3(PpapiHostMsg_ResourceCreation_ImageData, 896 IPC_SYNC_MESSAGE_ROUTED4_3(PpapiHostMsg_ResourceCreation_ImageData,
901 PP_Instance /* instance */, 897 PP_Instance /* instance */,
902 int32 /* format */, 898 int32 /* format */,
903 PP_Size /* size */, 899 PP_Size /* size */,
904 PP_Bool /* init_to_zero */, 900 PP_Bool /* init_to_zero */,
905 pp::proxy::HostResource /* result_resource */, 901 pp::proxy::HostResource /* result_resource */,
906 std::string /* image_data_desc */, 902 std::string /* image_data_desc */,
907 pp::proxy::ImageHandle /* result */) 903 pp::proxy::ImageHandle /* result */)
OLDNEW
« no previous file with comments | « ppapi/proxy/dispatcher.cc ('k') | ppapi/proxy/ppapi_param_traits.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698