Changeset 69561 in webkit


Ignore:
Timestamp:
Oct 11, 2010 11:17:04 PM (14 years ago)
Author:
hamaji@chromium.org
Message:

2010-10-11 Shinichiro Hamaji <hamaji@chromium.org>

Attempt to fix windows build failure.

Remove WebIconFetcher from WebKit and IconFetcher from WebCore
https://bugs.webkit.org/show_bug.cgi?id=47523

  • Interfaces/IWebFramePrivate.idl: s/unused1/unused2/
  • Interfaces/WebKit.idl: Touched.
  • WebFrame.cpp: s/unused1/unused2/ (WebFrame::unused2):
  • WebFrame.h: s/unused1/unused2/
Location:
trunk/WebKit/win
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/win/ChangeLog

    r69549 r69561  
     12010-10-11  Shinichiro Hamaji  <hamaji@chromium.org>
     2
     3        Attempt to fix windows build failure.
     4
     5        Remove WebIconFetcher from WebKit and IconFetcher from WebCore
     6        https://bugs.webkit.org/show_bug.cgi?id=47523
     7
     8        * Interfaces/IWebFramePrivate.idl: s/unused1/unused2/
     9        * Interfaces/WebKit.idl: Touched.
     10        * WebFrame.cpp: s/unused1/unused2/
     11        (WebFrame::unused2):
     12        * WebFrame.h: s/unused1/unused2/
     13
    1142010-10-11  Anders Carlsson  <andersca@apple.com>
    215
  • trunk/WebKit/win/Interfaces/IWebFramePrivate.idl

    r69549 r69561  
    8080    HRESULT pendingFrameUnloadEventCount([out, retval] UINT* result);
    8181
    82     HRESULT unused1();
     82    HRESULT unused2();
    8383
    8484    HRESULT paintDocumentRectToContext([in] RECT rect, [in] OLE_HANDLE deviceContext);
  • trunk/WebKit/win/Interfaces/WebKit.idl

    r69549 r69561  
    301301    }
    302302}
     303
  • trunk/WebKit/win/WebFrame.cpp

    r69549 r69561  
    10151015}
    10161016
    1017 HRESULT STDMETHODCALLTYPE WebFrame::unused1()
     1017HRESULT STDMETHODCALLTYPE WebFrame::unused2()
    10181018{
    10191019    return E_NOTIMPL;
  • trunk/WebKit/win/WebFrame.h

    r69549 r69561  
    188188        /* [retval][out] */ UINT* result);
    189189
    190     virtual HRESULT STDMETHODCALLTYPE unused1();
     190    virtual HRESULT STDMETHODCALLTYPE unused2();
    191191   
    192192    virtual HRESULT STDMETHODCALLTYPE setInPrintingMode(
Note: See TracChangeset for help on using the changeset viewer.