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

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

Issue 10908130: Revert 155122 - 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
« no previous file with comments | « content/common/content_debug_logging_unittest.cc ('k') | content/common/view_messages.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) 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_ContentDebugRecordMsg,
477 int /* bug_id */,
478 std::string /* msg */)
479 IPC_SYNC_MESSAGE_CONTROL1_2(PluginProcessHostMsg_ContentDebugGetMessages,
480 int /* bug_id */,
481 bool /* handled */,
482 std::vector<std::string> /* msgs */)
483 475
484 //----------------------------------------------------------------------------- 476 //-----------------------------------------------------------------------------
485 // NPObject messages 477 // NPObject messages
486 // These are messages used to marshall NPObjects. They are sent both from the 478 // These are messages used to marshall NPObjects. They are sent both from the
487 // plugin to the renderer and from the renderer to the plugin. 479 // plugin to the renderer and from the renderer to the plugin.
488 IPC_SYNC_MESSAGE_ROUTED0_0(NPObjectMsg_Release) 480 IPC_SYNC_MESSAGE_ROUTED0_0(NPObjectMsg_Release)
489 481
490 IPC_SYNC_MESSAGE_ROUTED1_1(NPObjectMsg_HasMethod, 482 IPC_SYNC_MESSAGE_ROUTED1_1(NPObjectMsg_HasMethod,
491 NPIdentifier_Param /* name */, 483 NPIdentifier_Param /* name */,
492 bool /* result */) 484 bool /* result */)
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
525 IPC_SYNC_MESSAGE_ROUTED1_2(NPObjectMsg_Construct, 517 IPC_SYNC_MESSAGE_ROUTED1_2(NPObjectMsg_Construct,
526 std::vector<NPVariant_Param> /* args */, 518 std::vector<NPVariant_Param> /* args */,
527 NPVariant_Param /* result_param */, 519 NPVariant_Param /* result_param */,
528 bool /* result */) 520 bool /* result */)
529 521
530 IPC_SYNC_MESSAGE_ROUTED2_2(NPObjectMsg_Evaluate, 522 IPC_SYNC_MESSAGE_ROUTED2_2(NPObjectMsg_Evaluate,
531 std::string /* script */, 523 std::string /* script */,
532 bool /* popups_allowed */, 524 bool /* popups_allowed */,
533 NPVariant_Param /* result_param */, 525 NPVariant_Param /* result_param */,
534 bool /* result */) 526 bool /* result */)
OLDNEW
« no previous file with comments | « content/common/content_debug_logging_unittest.cc ('k') | content/common/view_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698