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

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

Issue 7362012: Remove untrusted scripting support. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix DCHECK(MessageLoop::current()) failure for serialized var test 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
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 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
284 PP_Instance /* instance */, 284 PP_Instance /* instance */,
285 PP_Bool /* has_focus */) 285 PP_Bool /* has_focus */)
286 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiMsg_PPPInstance_HandleInputEvent, 286 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiMsg_PPPInstance_HandleInputEvent,
287 PP_Instance /* instance */, 287 PP_Instance /* instance */,
288 PP_InputEvent /* event */, 288 PP_InputEvent /* event */,
289 PP_Bool /* result */) 289 PP_Bool /* result */)
290 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiMsg_PPPInstance_HandleDocumentLoad, 290 IPC_SYNC_MESSAGE_ROUTED2_1(PpapiMsg_PPPInstance_HandleDocumentLoad,
291 PP_Instance /* instance */, 291 PP_Instance /* instance */,
292 pp::proxy::HostResource /* url_loader */, 292 pp::proxy::HostResource /* url_loader */,
293 PP_Bool /* result */) 293 PP_Bool /* result */)
294 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiMsg_PPPInstance_GetInstanceObject,
295 PP_Instance /* instance */,
296 pp::proxy::SerializedVar /* result */)
297 294
298 // PPP_Instance_Private. 295 // PPP_Instance_Private.
299 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiMsg_PPPInstancePrivate_GetInstanceObject, 296 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiMsg_PPPInstancePrivate_GetInstanceObject,
300 PP_Instance /* instance */, 297 PP_Instance /* instance */,
301 pp::proxy::SerializedVar /* result */) 298 pp::proxy::SerializedVar /* result */)
302 299
303 // PPB_URLLoader 300 // PPB_URLLoader
304 // (Messages from browser to plugin to notify it of changes in state.) 301 // (Messages from browser to plugin to notify it of changes in state.)
305 IPC_MESSAGE_ROUTED1(PpapiMsg_PPBURLLoader_UpdateProgress, 302 IPC_MESSAGE_ROUTED1(PpapiMsg_PPBURLLoader_UpdateProgress,
306 pp::proxy::PPBURLLoader_UpdateProgress_Params /* params */) 303 pp::proxy::PPBURLLoader_UpdateProgress_Params /* params */)
(...skipping 540 matching lines...) Expand 10 before | Expand all | Expand 10 after
847 PP_Bool /* is_always_opaque */, 844 PP_Bool /* is_always_opaque */,
848 pp::proxy::HostResource /* result */) 845 pp::proxy::HostResource /* result */)
849 IPC_SYNC_MESSAGE_ROUTED4_3(PpapiHostMsg_ResourceCreation_ImageData, 846 IPC_SYNC_MESSAGE_ROUTED4_3(PpapiHostMsg_ResourceCreation_ImageData,
850 PP_Instance /* instance */, 847 PP_Instance /* instance */,
851 int32 /* format */, 848 int32 /* format */,
852 PP_Size /* size */, 849 PP_Size /* size */,
853 PP_Bool /* init_to_zero */, 850 PP_Bool /* init_to_zero */,
854 pp::proxy::HostResource /* result_resource */, 851 pp::proxy::HostResource /* result_resource */,
855 std::string /* image_data_desc */, 852 std::string /* image_data_desc */,
856 pp::proxy::ImageHandle /* result */) 853 pp::proxy::ImageHandle /* result */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698