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

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

Issue 9693031: mac: fix flash videos with --disable-composited-core-animation-plugins (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 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/browser/renderer_host/render_widget_host_mac.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 422 matching lines...) Expand 10 before | Expand all | Expand 10 after
433 // renderer is finished with them. 433 // renderer is finished with them.
434 IPC_MESSAGE_ROUTED1(PluginHostMsg_FreeTransportDIB, 434 IPC_MESSAGE_ROUTED1(PluginHostMsg_FreeTransportDIB,
435 TransportDIB::Id /* DIB id */) 435 TransportDIB::Id /* DIB id */)
436 436
437 // This message notifies the renderer process (and from there the 437 // This message notifies the renderer process (and from there the
438 // browser process) that the plug-in swapped the buffers associated 438 // browser process) that the plug-in swapped the buffers associated
439 // with the given "window", which should cause the browser to redraw 439 // with the given "window", which should cause the browser to redraw
440 // the various plug-ins' contents. 440 // the various plug-ins' contents.
441 IPC_MESSAGE_ROUTED2(PluginHostMsg_AcceleratedSurfaceBuffersSwapped, 441 IPC_MESSAGE_ROUTED2(PluginHostMsg_AcceleratedSurfaceBuffersSwapped,
442 gfx::PluginWindowHandle /* window */, 442 gfx::PluginWindowHandle /* window */,
443 uint64 /* surface_id */) 443 uint64 /* surface_handle */)
444 444
445 //---------------------------------------------------------------------- 445 //----------------------------------------------------------------------
446 // New Core Animation plugin implementation rendering via compositor. 446 // New Core Animation plugin implementation rendering via compositor.
447 447
448 // Notifies the renderer process that this plugin will be using the 448 // Notifies the renderer process that this plugin will be using the
449 // accelerated rendering path. 449 // accelerated rendering path.
450 IPC_MESSAGE_ROUTED0(PluginHostMsg_AcceleratedPluginEnabledRendering) 450 IPC_MESSAGE_ROUTED0(PluginHostMsg_AcceleratedPluginEnabledRendering)
451 451
452 // Notifies the renderer process that the plugin allocated a new 452 // Notifies the renderer process that the plugin allocated a new
453 // IOSurface into which it is rendering. The renderer process forwards 453 // IOSurface into which it is rendering. The renderer process forwards
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
518 IPC_SYNC_MESSAGE_ROUTED1_2(NPObjectMsg_Construct, 518 IPC_SYNC_MESSAGE_ROUTED1_2(NPObjectMsg_Construct,
519 std::vector<NPVariant_Param> /* args */, 519 std::vector<NPVariant_Param> /* args */,
520 NPVariant_Param /* result_param */, 520 NPVariant_Param /* result_param */,
521 bool /* result */) 521 bool /* result */)
522 522
523 IPC_SYNC_MESSAGE_ROUTED2_2(NPObjectMsg_Evaluate, 523 IPC_SYNC_MESSAGE_ROUTED2_2(NPObjectMsg_Evaluate,
524 std::string /* script */, 524 std::string /* script */,
525 bool /* popups_allowed */, 525 bool /* popups_allowed */,
526 NPVariant_Param /* result_param */, 526 NPVariant_Param /* result_param */,
527 bool /* result */) 527 bool /* result */)
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_widget_host_mac.cc ('k') | content/common/view_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698