diff options
author | nduca@chromium.org <nduca@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-13 23:24:35 +0000 |
---|---|---|
committer | nduca@chromium.org <nduca@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-13 23:24:35 +0000 |
commit | 1842fe2422e552fe024b8975cf7e611d10434c44 (patch) | |
tree | 642bb3067e7a903bc1aa9687b885adbf7f9afb56 /content/common | |
parent | b1402a5ad552386dbeeef477dfa351cd453d5793 (diff) | |
download | chromium_src-1842fe2422e552fe024b8975cf7e611d10434c44.zip chromium_src-1842fe2422e552fe024b8975cf7e611d10434c44.tar.gz chromium_src-1842fe2422e552fe024b8975cf7e611d10434c44.tar.bz2 |
Creates the WebCompositorOutputSurface, which is the new mechanism for rendering interactions between the compositor and RenderWidgetHost.
As part of this, we plumb vsync information to the compositor.
The new IPC::ForwardingMessageFilter is modified to have route-specific handlers rather than a global handler. This simplifies message routing considerably.
BUG=129674
Review URL: https://chromiumcodereview.appspot.com/10798006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151387 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common')
-rw-r--r-- | content/common/view_messages.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/content/common/view_messages.h b/content/common/view_messages.h index da41ea2..042bff4 100644 --- a/content/common/view_messages.h +++ b/content/common/view_messages.h @@ -1581,6 +1581,11 @@ IPC_MESSAGE_ROUTED1(ViewHostMsg_UpdateRect, // which may get delayed until the browser's UI unblocks. IPC_MESSAGE_ROUTED0(ViewHostMsg_UpdateIsDelayed) +// Sent by the renderer when the parameters for vsync alignment have changed. +IPC_MESSAGE_ROUTED2(ViewMsg_UpdateVSyncParameters, + base::TimeTicks /* timebase */, + base::TimeDelta /* interval */) + // Sent by the renderer when accelerated compositing is enabled or disabled to // notify the browser whether or not is should do painting. IPC_MESSAGE_ROUTED1(ViewHostMsg_DidActivateAcceleratedCompositing, |