Title: [94847] trunk/Source/WebKit/chromium
Revision
94847
Author
commit-qu...@webkit.org
Date
2011-09-09 04:39:40 -0700 (Fri, 09 Sep 2011)

Log Message

Exposing the isLink method on WebNode for the Chromium port on Android.

Patch by Martin Kosiba <mkos...@chromium.org> on 2011-09-09
Reviewed by Darin Fisher.

* public/WebNode.h:
* src/WebNode.cpp:
(WebKit::WebNode::isLink):

Modified Paths

Diff

Modified: trunk/Source/WebKit/chromium/ChangeLog (94846 => 94847)


--- trunk/Source/WebKit/chromium/ChangeLog	2011-09-09 11:34:12 UTC (rev 94846)
+++ trunk/Source/WebKit/chromium/ChangeLog	2011-09-09 11:39:40 UTC (rev 94847)
@@ -1,3 +1,13 @@
+2011-09-09  Martin Kosiba  <mkos...@chromium.org>
+
+        Exposing the isLink method on WebNode for the Chromium port on Android.
+
+        Reviewed by Darin Fisher.
+
+        * public/WebNode.h:
+        * src/WebNode.cpp:
+        (WebKit::WebNode::isLink):
+
 2011-09-08  Adam Barth  <aba...@webkit.org>
 
         Another attempt to fix the Chromium build.  (Missed one.)

Modified: trunk/Source/WebKit/chromium/public/WebNode.h (94846 => 94847)


--- trunk/Source/WebKit/chromium/public/WebNode.h	2011-09-09 11:34:12 UTC (rev 94846)
+++ trunk/Source/WebKit/chromium/public/WebNode.h	2011-09-09 11:39:40 UTC (rev 94847)
@@ -96,6 +96,7 @@
     WEBKIT_EXPORT bool hasChildNodes() const;
     WEBKIT_EXPORT WebNodeList childNodes();
     WEBKIT_EXPORT WebString createMarkup() const;
+    WEBKIT_EXPORT bool isLink() const;
     WEBKIT_EXPORT bool isTextNode() const;
     WEBKIT_EXPORT bool isFocusable() const;
     WEBKIT_EXPORT bool isContentEditable() const;

Modified: trunk/Source/WebKit/chromium/src/WebNode.cpp (94846 => 94847)


--- trunk/Source/WebKit/chromium/src/WebNode.cpp	2011-09-09 11:34:12 UTC (rev 94846)
+++ trunk/Source/WebKit/chromium/src/WebNode.cpp	2011-09-09 11:39:40 UTC (rev 94847)
@@ -140,6 +140,11 @@
     return WebCore::createMarkup(m_private.get());
 }
 
+bool WebNode::isLink() const
+{
+    return m_private->isLink();
+}
+
 bool WebNode::isTextNode() const
 {
     return m_private->isTextNode();
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to