Title: [122118] trunk/Source/WebCore
Revision
122118
Author
[email protected]
Date
2012-07-09 11:25:51 -0700 (Mon, 09 Jul 2012)

Log Message

EFL build fix after r122115.

* html/HTMLPropertiesCollection.cpp:
(WebCore::HTMLPropertiesCollection::create):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (122117 => 122118)


--- trunk/Source/WebCore/ChangeLog	2012-07-09 18:25:20 UTC (rev 122117)
+++ trunk/Source/WebCore/ChangeLog	2012-07-09 18:25:51 UTC (rev 122118)
@@ -1,3 +1,10 @@
+2012-07-09  Ryosuke Niwa  <[email protected]>
+
+        EFL build fix after r122115.
+
+        * html/HTMLPropertiesCollection.cpp:
+        (WebCore::HTMLPropertiesCollection::create):
+
 2012-07-09  Joshua Netterfield  <[email protected]>
         Make GC3D and E3D more maintainable for GLES platforms
         https://bugs.webkit.org/show_bug.cgi?id=90567

Modified: trunk/Source/WebCore/html/HTMLPropertiesCollection.cpp (122117 => 122118)


--- trunk/Source/WebCore/html/HTMLPropertiesCollection.cpp	2012-07-09 18:25:20 UTC (rev 122117)
+++ trunk/Source/WebCore/html/HTMLPropertiesCollection.cpp	2012-07-09 18:25:51 UTC (rev 122118)
@@ -45,9 +45,9 @@
 
 using namespace HTMLNames;
 
-PassOwnPtr<HTMLPropertiesCollection> HTMLPropertiesCollection::create(Node* itemNode)
+PassRefPtr<HTMLPropertiesCollection> HTMLPropertiesCollection::create(Node* itemNode)
 {
-    return adoptPtr(new HTMLPropertiesCollection(itemNode));
+    return adoptRef(new HTMLPropertiesCollection(itemNode));
 }
 
 HTMLPropertiesCollection::HTMLPropertiesCollection(Node* itemNode)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to