Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[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.

Canonical link: https://commits.webkit.org/136224@main
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@152169 268f45cc-cd09-0410-ab3c-d52691b4dbfc
  • Loading branch information
peavo authored and webkit-commit-queue committed Jun 28, 2013
1 parent 9a97324 commit b6bb6fa
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
11 changes: 11 additions & 0 deletions Source/WebKit/win/ChangeLog
@@ -1,3 +1,14 @@
2013-06-28 peavo@outlook.com <peavo@outlook.com>

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

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.

2013-06-27 Kangil Han <kangil.han@samsung.com>

Adopt is/toHTMLInputElement for code cleanup
Expand Down
3 changes: 3 additions & 0 deletions Source/WebKit/win/Interfaces/IWebView.idl
Expand Up @@ -47,6 +47,7 @@ import "DOMCSS.idl";
import "IWebUndoManager.idl";
import "IWebEditingDelegate.idl";
import "DOMRange.idl";
import "AccessibilityDelegate.idl";
#endif

interface IDOMCSSStyleDeclaration;
Expand Down Expand Up @@ -74,6 +75,8 @@ interface IWebDocumentView;
interface IWebDocumentRepresentation;
interface IWebUndoManager;

interface IAccessibilityDelegate;

/* These are the keys for the WebElementPropertyBag */
const LPCOLESTR WebElementDOMNodeKey = L"WebElementDOMNodeKey";
const LPCOLESTR WebElementFrameKey = L"WebElementFrameKey";
Expand Down
3 changes: 1 addition & 2 deletions Source/WebKit/win/WebCoreSupport/WebChromeClient.cpp
Expand Up @@ -856,6 +856,7 @@ void WebChromeClient::exitFullScreenForElement(Element* element)
ASSERT(element == m_webView->fullScreenElement());
m_webView->fullScreenController()->exitFullScreen();
}
#endif

void WebChromeClient::AXStartFrameLoad()
{
Expand All @@ -872,5 +873,3 @@ void WebChromeClient::AXFinishFrameLoad()
if (delegate)
delegate->fireFrameLoadFinishedEvents();
}

#endif

0 comments on commit b6bb6fa

Please sign in to comment.