Title: [152169] trunk/Source/WebKit/win
- Revision
- 152169
- Author
- [email protected]
- Date
- 2013-06-28 09:07:37 -0700 (Fri, 28 Jun 2013)
Log Message
[WinCairo] Compilation error.
https://bugs.webkit.org/show_bug.cgi?id=118131
Patch by [email protected] <[email protected]> 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.
Modified Paths
Diff
Modified: trunk/Source/WebKit/win/ChangeLog (152168 => 152169)
--- trunk/Source/WebKit/win/ChangeLog 2013-06-28 16:01:32 UTC (rev 152168)
+++ trunk/Source/WebKit/win/ChangeLog 2013-06-28 16:07:37 UTC (rev 152169)
@@ -1,3 +1,14 @@
+2013-06-28 [email protected] <[email protected]>
+
+ [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 <[email protected]>
Adopt is/toHTMLInputElement for code cleanup
Modified: trunk/Source/WebKit/win/Interfaces/IWebView.idl (152168 => 152169)
--- trunk/Source/WebKit/win/Interfaces/IWebView.idl 2013-06-28 16:01:32 UTC (rev 152168)
+++ trunk/Source/WebKit/win/Interfaces/IWebView.idl 2013-06-28 16:07:37 UTC (rev 152169)
@@ -47,6 +47,7 @@
import "IWebUndoManager.idl";
import "IWebEditingDelegate.idl";
import "DOMRange.idl";
+import "AccessibilityDelegate.idl";
#endif
interface IDOMCSSStyleDeclaration;
@@ -74,6 +75,8 @@
interface IWebDocumentRepresentation;
interface IWebUndoManager;
+interface IAccessibilityDelegate;
+
/* These are the keys for the WebElementPropertyBag */
const LPCOLESTR WebElementDOMNodeKey = L"WebElementDOMNodeKey";
const LPCOLESTR WebElementFrameKey = L"WebElementFrameKey";
Modified: trunk/Source/WebKit/win/WebCoreSupport/WebChromeClient.cpp (152168 => 152169)
--- trunk/Source/WebKit/win/WebCoreSupport/WebChromeClient.cpp 2013-06-28 16:01:32 UTC (rev 152168)
+++ trunk/Source/WebKit/win/WebCoreSupport/WebChromeClient.cpp 2013-06-28 16:07:37 UTC (rev 152169)
@@ -856,6 +856,7 @@
ASSERT(element == m_webView->fullScreenElement());
m_webView->fullScreenController()->exitFullScreen();
}
+#endif
void WebChromeClient::AXStartFrameLoad()
{
@@ -872,5 +873,3 @@
if (delegate)
delegate->fireFrameLoadFinishedEvents();
}
-
-#endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes