Changeset 128806 in webkit


Ignore:
Timestamp:
Sep 17, 2012 2:31:14 PM (12 years ago)
Author:
piman@chromium.org
Message:

[chromium] Add onSendFrameToParentCompositorAck to WebCompositorOutputSurfaceClient
https://bugs.webkit.org/show_bug.cgi?id=96850

Reviewed by James Robinson.

Hook for the WebCompositorOutputSurface::sendFrameToParent ack.
Also changes WebCompositorFrame from a class to a struct.

  • chromium/public/WebCompositorOutputSurface.h:

(WebKit):

  • chromium/public/WebCompositorOutputSurfaceClient.h:

(WebKit):
(WebCompositorOutputSurfaceClient):

Location:
trunk/Source/Platform
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/Platform/ChangeLog

    r128803 r128806  
     12012-09-17  Antoine Labour  <piman@chromium.org>
     2
     3        [chromium] Add onSendFrameToParentCompositorAck to WebCompositorOutputSurfaceClient
     4        https://bugs.webkit.org/show_bug.cgi?id=96850
     5
     6        Reviewed by James Robinson.
     7
     8        Hook for the WebCompositorOutputSurface::sendFrameToParent ack.
     9        Also changes WebCompositorFrame from a class to a struct.
     10
     11        * chromium/public/WebCompositorOutputSurface.h:
     12        (WebKit):
     13        * chromium/public/WebCompositorOutputSurfaceClient.h:
     14        (WebKit):
     15        (WebCompositorOutputSurfaceClient):
     16
    1172012-09-17  Alexandre Elias  <aelias@chromium.org>
    218
  • trunk/Source/Platform/chromium/public/WebCompositorOutputSurface.h

    r128803 r128806  
    2929namespace WebKit {
    3030
    31 class WebCompositorFrame;
     31struct WebCompositorFrame;
    3232class WebGraphicsContext3D;
    3333class WebCompositorSoftwareOutputDevice;
  • trunk/Source/Platform/chromium/public/WebCompositorOutputSurfaceClient.h

    r125219 r128806  
    2929namespace WebKit {
    3030
     31struct WebCompositorFrameAck;
     32
    3133class WebCompositorOutputSurfaceClient {
    3234public:
    3335    virtual void onVSyncParametersChanged(double monotonicTimebase, double intervalInSeconds) = 0;
     36    virtual void onSendFrameToParentCompositorAck(const WebCompositorFrameAck&) { }
    3437
    3538protected:
Note: See TracChangeset for help on using the changeset viewer.