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

Side by Side Diff: chrome/common/plugin_messages_internal.h

Issue 113823: Added support for constructor calls in the NPAPI (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 7 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 | chrome/plugin/npobject_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) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 #include "base/shared_memory.h" 5 #include "base/shared_memory.h"
6 #include "chrome/common/ipc_message_macros.h" 6 #include "chrome/common/ipc_message_macros.h"
7 #include "webkit/glue/webcursor.h" 7 #include "webkit/glue/webcursor.h"
8 8
9 //----------------------------------------------------------------------------- 9 //-----------------------------------------------------------------------------
10 // PluginProcess messages 10 // PluginProcess messages
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 IPC_SYNC_MESSAGE_ROUTED1_1(NPObjectMsg_RemoveProperty, 324 IPC_SYNC_MESSAGE_ROUTED1_1(NPObjectMsg_RemoveProperty,
325 NPIdentifier_Param /* name */, 325 NPIdentifier_Param /* name */,
326 bool /* result */) 326 bool /* result */)
327 327
328 IPC_SYNC_MESSAGE_ROUTED0_0(NPObjectMsg_Invalidate) 328 IPC_SYNC_MESSAGE_ROUTED0_0(NPObjectMsg_Invalidate)
329 329
330 IPC_SYNC_MESSAGE_ROUTED0_2(NPObjectMsg_Enumeration, 330 IPC_SYNC_MESSAGE_ROUTED0_2(NPObjectMsg_Enumeration,
331 std::vector<NPIdentifier_Param> /* value */, 331 std::vector<NPIdentifier_Param> /* value */,
332 bool /* result */) 332 bool /* result */)
333 333
334 IPC_SYNC_MESSAGE_ROUTED1_2(NPObjectMsg_Construct,
335 std::vector<NPVariant_Param> /* args */,
336 NPVariant_Param /* result_param */,
337 bool /* result */)
338
334 IPC_SYNC_MESSAGE_ROUTED2_2(NPObjectMsg_Evaluate, 339 IPC_SYNC_MESSAGE_ROUTED2_2(NPObjectMsg_Evaluate,
335 std::string /* script */, 340 std::string /* script */,
336 bool /* popups_allowed */, 341 bool /* popups_allowed */,
337 NPVariant_Param /* result_param */, 342 NPVariant_Param /* result_param */,
338 bool /* result */) 343 bool /* result */)
339 344
340 IPC_SYNC_MESSAGE_ROUTED1_0(NPObjectMsg_SetException, 345 IPC_SYNC_MESSAGE_ROUTED1_0(NPObjectMsg_SetException,
341 std::string /* message */) 346 std::string /* message */)
342 347
343 IPC_END_MESSAGES(NPObject) 348 IPC_END_MESSAGES(NPObject)
OLDNEW
« no previous file with comments | « no previous file | chrome/plugin/npobject_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698