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

Side by Side Diff: content/common/plugin_messages.h

Issue 10908078: Code to collect issue 97285 debugging info for crash reports. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 file, hence no include guard. 5 // Multiply-included message file, hence no include guard.
6 6
7 #include "build/build_config.h" 7 #include "build/build_config.h"
8 #include "content/common/content_export.h" 8 #include "content/common/content_export.h"
9 #include "content/public/common/common_param_traits.h" 9 #include "content/public/common/common_param_traits.h"
10 #include "content/public/common/webkit_param_traits.h" 10 #include "content/public/common/webkit_param_traits.h"
(...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after
465 IPC_MESSAGE_ROUTED0(PluginHostMsg_AcceleratedPluginSwappedIOSurface) 465 IPC_MESSAGE_ROUTED0(PluginHostMsg_AcceleratedPluginSwappedIOSurface)
466 #endif 466 #endif
467 467
468 IPC_MESSAGE_CONTROL1(PluginHostMsg_ClearSiteDataResult, 468 IPC_MESSAGE_CONTROL1(PluginHostMsg_ClearSiteDataResult,
469 bool /* success */) 469 bool /* success */)
470 470
471 IPC_MESSAGE_ROUTED2(PluginHostMsg_URLRedirectResponse, 471 IPC_MESSAGE_ROUTED2(PluginHostMsg_URLRedirectResponse,
472 bool /* allow */, 472 bool /* allow */,
473 int /* resource_id */) 473 int /* resource_id */)
474 474
475 // Forward client content_debug_logging to the host process's implementation.
476 IPC_MESSAGE_CONTROL2(PluginProcessHostMsg_RecordMsg,
477 int /* bug_id */,
478 std::string /* msg */)
479 IPC_SYNC_MESSAGE_CONTROL1_1(PluginProcessHostMsg_GetMessages,
480 int /* bug_id */,
481 std::vector<std::string> /* msgs */)
475 482
476 //----------------------------------------------------------------------------- 483 //-----------------------------------------------------------------------------
477 // NPObject messages 484 // NPObject messages
478 // These are messages used to marshall NPObjects. They are sent both from the 485 // These are messages used to marshall NPObjects. They are sent both from the
479 // plugin to the renderer and from the renderer to the plugin. 486 // plugin to the renderer and from the renderer to the plugin.
480 IPC_SYNC_MESSAGE_ROUTED0_0(NPObjectMsg_Release) 487 IPC_SYNC_MESSAGE_ROUTED0_0(NPObjectMsg_Release)
481 488
482 IPC_SYNC_MESSAGE_ROUTED1_1(NPObjectMsg_HasMethod, 489 IPC_SYNC_MESSAGE_ROUTED1_1(NPObjectMsg_HasMethod,
483 NPIdentifier_Param /* name */, 490 NPIdentifier_Param /* name */,
484 bool /* result */) 491 bool /* result */)
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
517 IPC_SYNC_MESSAGE_ROUTED1_2(NPObjectMsg_Construct, 524 IPC_SYNC_MESSAGE_ROUTED1_2(NPObjectMsg_Construct,
518 std::vector<NPVariant_Param> /* args */, 525 std::vector<NPVariant_Param> /* args */,
519 NPVariant_Param /* result_param */, 526 NPVariant_Param /* result_param */,
520 bool /* result */) 527 bool /* result */)
521 528
522 IPC_SYNC_MESSAGE_ROUTED2_2(NPObjectMsg_Evaluate, 529 IPC_SYNC_MESSAGE_ROUTED2_2(NPObjectMsg_Evaluate,
523 std::string /* script */, 530 std::string /* script */,
524 bool /* popups_allowed */, 531 bool /* popups_allowed */,
525 NPVariant_Param /* result_param */, 532 NPVariant_Param /* result_param */,
526 bool /* result */) 533 bool /* result */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698