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

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

Issue 6562: This fixes http://code.google.com/p/chromium/issues/detail?id=2472, which... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years, 2 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.cc » ('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 283 matching lines...) Expand 10 before | Expand all | Expand 10 after
294 IPC_SYNC_MESSAGE_ROUTED1_1(NPObjectMsg_RemoveProperty, 294 IPC_SYNC_MESSAGE_ROUTED1_1(NPObjectMsg_RemoveProperty,
295 NPIdentifier_Param /* name */, 295 NPIdentifier_Param /* name */,
296 bool /* result */) 296 bool /* result */)
297 297
298 IPC_SYNC_MESSAGE_ROUTED0_0(NPObjectMsg_Invalidate) 298 IPC_SYNC_MESSAGE_ROUTED0_0(NPObjectMsg_Invalidate)
299 299
300 IPC_SYNC_MESSAGE_ROUTED0_2(NPObjectMsg_Enumeration, 300 IPC_SYNC_MESSAGE_ROUTED0_2(NPObjectMsg_Enumeration,
301 std::vector<NPIdentifier_Param> /* value */, 301 std::vector<NPIdentifier_Param> /* value */,
302 bool /* result */) 302 bool /* result */)
303 303
304 IPC_SYNC_MESSAGE_ROUTED1_2(NPObjectMsg_Evaluate, 304 IPC_SYNC_MESSAGE_ROUTED2_2(NPObjectMsg_Evaluate,
305 std::string /* script */, 305 std::string /* script */,
306 bool /* popups_allowed */,
306 NPVariant_Param /* result_param */, 307 NPVariant_Param /* result_param */,
307 bool /* result */) 308 bool /* result */)
308 309
309 IPC_SYNC_MESSAGE_ROUTED1_0(NPObjectMsg_SetException, 310 IPC_SYNC_MESSAGE_ROUTED1_0(NPObjectMsg_SetException,
310 std::string /* message */) 311 std::string /* message */)
311 312
312 IPC_END_MESSAGES(NPObject) 313 IPC_END_MESSAGES(NPObject)
313 314
OLDNEW
« no previous file with comments | « no previous file | chrome/plugin/npobject_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698