Changeset 152169 in webkit


Ignore:
Timestamp:
Jun 28, 2013 9:07:37 AM (11 years ago)
Author:
commit-queue@webkit.org
Message:

[WinCairo] Compilation error.
https://bugs.webkit.org/show_bug.cgi?id=118131

Patch by peavo@outlook.com <peavo@outlook.com> on 2013-06-28
Reviewed by Brent Fulgham.

  • Interfaces/IWebView.idl: Include needed accessibility interface.
  • WebCoreSupport/WebChromeClient.cpp:

(WebChromeClient::AXFinishFrameLoad): Accessibility methods should not be inside FULLSCREEN_API ifdef.

Location:
trunk/Source/WebKit/win
Files:
3 edited

Legend:

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

    r152149 r152169  
     12013-06-28  peavo@outlook.com  <peavo@outlook.com>
     2
     3        [WinCairo] Compilation error.
     4        https://bugs.webkit.org/show_bug.cgi?id=118131
     5
     6        Reviewed by Brent Fulgham.
     7
     8        * Interfaces/IWebView.idl: Include needed accessibility interface.
     9        * WebCoreSupport/WebChromeClient.cpp:
     10        (WebChromeClient::AXFinishFrameLoad): Accessibility methods should not be inside FULLSCREEN_API ifdef.
     11
    1122013-06-27  Kangil Han  <kangil.han@samsung.com>
    213
  • trunk/Source/WebKit/win/Interfaces/IWebView.idl

    r152065 r152169  
    4848import "IWebEditingDelegate.idl";
    4949import "DOMRange.idl";
     50import "AccessibilityDelegate.idl";
    5051#endif
    5152
     
    7475interface IWebDocumentRepresentation;
    7576interface IWebUndoManager;
     77
     78interface IAccessibilityDelegate;
    7679
    7780/* These are the keys for the WebElementPropertyBag */
  • trunk/Source/WebKit/win/WebCoreSupport/WebChromeClient.cpp

    r152143 r152169  
    857857    m_webView->fullScreenController()->exitFullScreen();
    858858}
     859#endif
    859860
    860861void WebChromeClient::AXStartFrameLoad()
     
    873874        delegate->fireFrameLoadFinishedEvents();
    874875}
    875 
    876 #endif
Note: See TracChangeset for help on using the changeset viewer.