Changeset 85691 in webkit


Ignore:
Timestamp:
May 3, 2011 4:59:54 PM (13 years ago)
Author:
bweinstein@apple.com
Message:

REGRESSION(r84990): Nightly builds don't launch on Windows
https://bugs.webkit.org/show_bug.cgi?id=60081
<rdar://problem/9358635>

Reviewed by Steve Falkenburg.

Fix nightlies on Window by moving the layered window functions to the bottom
of IWebViewPrivate and touch WebKit.idl to make sure Interfaces rebuild.

  • Interfaces/IWebViewPrivate.idl: Move functions added in r84990 to the bottom of the file.
  • Interfaces/WebKit.idl: Touch to force a rebuild.
Location:
trunk/Source/WebKit/win
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/win/ChangeLog

    r85684 r85691  
     12011-05-03  Brian Weinstein  <bweinstein@apple.com>
     2
     3        Reviewed by Steve Falkenburg.
     4
     5        REGRESSION(r84990): Nightly builds don't launch on Windows
     6        https://bugs.webkit.org/show_bug.cgi?id=60081
     7        <rdar://problem/9358635>
     8       
     9        Fix nightlies on Window by moving the layered window functions to the bottom
     10        of IWebViewPrivate and touch WebKit.idl to make sure Interfaces rebuild.
     11
     12        * Interfaces/IWebViewPrivate.idl: Move functions added in r84990 to the bottom of the file.
     13        * Interfaces/WebKit.idl: Touch to force a rebuild.
     14
    1152011-05-03  David Kilzer  <ddkilzer@apple.com>
    216
  • trunk/Source/WebKit/win/Interfaces/IWebViewPrivate.idl

    r85684 r85691  
    154154    HRESULT transparent([out, retval] BOOL* transparent);
    155155
    156     HRESULT setUsesLayeredWindow([in] BOOL usesLayeredWindow);
    157     HRESULT usesLayeredWindow([out, retval] BOOL* usesLayeredWindow);
    158 
    159156    HRESULT setAlwaysUsesComplexTextCodePath([in] BOOL complex);
    160157    HRESULT alwaysUsesComplexTextCodePath([out, retval] BOOL* complex);
     
    276273     */
    277274    HRESULT setHTTPPipeliningEnabled([in] BOOL enabled);
     275
     276    HRESULT setUsesLayeredWindow([in] BOOL usesLayeredWindow);
     277    HRESULT usesLayeredWindow([out, retval] BOOL* usesLayeredWindow);
    278278}
  • trunk/Source/WebKit/win/Interfaces/WebKit.idl

    r84990 r85691  
    302302    }
    303303}
    304 
Note: See TracChangeset for help on using the changeset viewer.