Title: [172953] trunk/Source/WebCore
Revision
172953
Author
mr...@apple.com
Date
2014-08-26 00:24:41 -0700 (Tue, 26 Aug 2014)

Log Message

Build fix after r172951.

* fileapi/Blob.h: Give the argument the name that the predicates expect.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (172952 => 172953)


--- trunk/Source/WebCore/ChangeLog	2014-08-26 07:17:44 UTC (rev 172952)
+++ trunk/Source/WebCore/ChangeLog	2014-08-26 07:24:41 UTC (rev 172953)
@@ -1,3 +1,9 @@
+2014-08-26  Mark Rowe  <mr...@apple.com>
+
+        Build fix after r172951.
+
+        * fileapi/Blob.h: Give the argument the name that the predicates expect.
+
 2014-08-25  Gyuyoung Kim  <gyuyoung....@samsung.com>
 
         Generate toFile() instead of manual functions.

Modified: trunk/Source/WebCore/fileapi/Blob.h (172952 => 172953)


--- trunk/Source/WebCore/fileapi/Blob.h	2014-08-26 07:17:44 UTC (rev 172952)
+++ trunk/Source/WebCore/fileapi/Blob.h	2014-08-26 07:24:41 UTC (rev 172953)
@@ -113,7 +113,7 @@
 };
 
 #define BLOB_TYPE_CASTS(ToValueTypeName, predicate) \
-    TYPE_CASTS_BASE(ToValueTypeName, Blob, object, blob->predicate, blob.predicate)
+    TYPE_CASTS_BASE(ToValueTypeName, Blob, blob, blob->predicate, blob.predicate)
 
 } // namespace WebCore
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to