Changeset 66438 in webkit


Ignore:
Timestamp:
Aug 30, 2010 6:04:44 PM (14 years ago)
Author:
Adam Roben
Message:

Fix crash on launch on Windows due to changing IWebFramePrivate's vtable

This regressed in r65107.

Fixes <http://webkit.org/b/44755>.

Rubber-stamped by Jon Honeycutt.

  • Interfaces/IWebFramePrivate.idl: Moved suspendAnimations and

resumeAnimations to the end of the interface so that the vtable will
match what Safari expects.

Location:
trunk/WebKit/win
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/win/ChangeLog

    r66376 r66438  
     12010-08-30  Adam Roben  <aroben@apple.com>
     2
     3        Fix crash on launch on Windows due to changing IWebFramePrivate's
     4        vtable
     5
     6        This regressed in r65107.
     7
     8        Fixes <http://webkit.org/b/44755>.
     9
     10        Rubber-stamped by Jon Honeycutt.
     11
     12        * Interfaces/IWebFramePrivate.idl: Moved suspendAnimations and
     13        resumeAnimations to the end of the interface so that the vtable will
     14        match what Safari expects.
     15
    1162010-08-30  Sheriff Bot  <webkit.review.bot@gmail.com>
    217
  • trunk/WebKit/win/Interfaces/IWebFramePrivate.idl

    r65107 r66438  
    9191    HRESULT pauseTransition([in] BSTR propertyName, [in] IDOMNode* node, [in] double secondsFromNow, [out, retval] BOOL* transitionWasRunning);
    9292    HRESULT numberOfActiveAnimations([out, retval] UINT* number);
    93     HRESULT suspendAnimations();
    94     HRESULT resumeAnimations();
    9593
    9694    HRESULT isDisplayingStandaloneImage([out, retval] BOOL* result);
     
    117115
    118116    HRESULT renderTreeAsExternalRepresentation([in] BOOL forPrinting, [out, retval] BSTR* result);
     117
     118    HRESULT suspendAnimations();
     119    HRESULT resumeAnimations();
    119120}
Note: See TracChangeset for help on using the changeset viewer.