Title: [174075] trunk/Source/WebKit2
Revision
174075
Author
m...@apple.com
Date
2014-09-29 11:28:34 -0700 (Mon, 29 Sep 2014)

Log Message

Build fix.

* WebProcess/WebPage/ios/WebPageIOS.mm:
(WebKit::WebPage::performActionOnElement):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (174074 => 174075)


--- trunk/Source/WebKit2/ChangeLog	2014-09-29 18:18:44 UTC (rev 174074)
+++ trunk/Source/WebKit2/ChangeLog	2014-09-29 18:28:34 UTC (rev 174075)
@@ -1,3 +1,10 @@
+2014-09-29  Dan Bernstein  <m...@apple.com>
+
+        Build fix.
+
+        * WebProcess/WebPage/ios/WebPageIOS.mm:
+        (WebKit::WebPage::performActionOnElement):
+
 2014-09-27  Andy Estes  <aes...@apple.com>
 
         [iOS] Add basic support for link navigation in WKPDFView

Modified: trunk/Source/WebKit2/WebProcess/WebPage/ios/WebPageIOS.mm (174074 => 174075)


--- trunk/Source/WebKit2/WebProcess/WebPage/ios/WebPageIOS.mm	2014-09-29 18:18:44 UTC (rev 174074)
+++ trunk/Source/WebKit2/WebProcess/WebPage/ios/WebPageIOS.mm	2014-09-29 18:28:34 UTC (rev 174075)
@@ -1952,7 +1952,7 @@
 
 void WebPage::performActionOnElement(uint32_t action)
 {
-    if (!m_interactionNode || !is<HTMLElement>(m_interactionNode))
+    if (!m_interactionNode || !is<HTMLElement>(m_interactionNode.get()))
         return;
 
     HTMLElement* element = downcast<HTMLElement>(m_interactionNode.get());
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to