Title: [154579] trunk/Source/WebCore
Revision
154579
Author
[email protected]
Date
2013-08-25 12:43:55 -0700 (Sun, 25 Aug 2013)

Log Message

BUILD FIX (r154578): Return Vector<String>() from Pasteboard::types() for iOS

* platform/ios/PasteboardIOS.mm:
(WebCore::Pasteboard::types): Return Vector<String>() instead of
ListHashSet<String>() after r154578.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (154578 => 154579)


--- trunk/Source/WebCore/ChangeLog	2013-08-25 17:24:02 UTC (rev 154578)
+++ trunk/Source/WebCore/ChangeLog	2013-08-25 19:43:55 UTC (rev 154579)
@@ -1,3 +1,11 @@
+2013-08-25  David Kilzer  <[email protected]>
+
+        BUILD FIX (r154578): Return Vector<String>() from Pasteboard::types() for iOS
+
+        * platform/ios/PasteboardIOS.mm:
+        (WebCore::Pasteboard::types): Return Vector<String>() instead of
+        ListHashSet<String>() after r154578.
+
 2013-08-25  Darin Adler  <[email protected]>
 
         Make _javascript_ binding for Clipboard::types more normal

Modified: trunk/Source/WebCore/platform/ios/PasteboardIOS.mm (154578 => 154579)


--- trunk/Source/WebCore/platform/ios/PasteboardIOS.mm	2013-08-25 17:24:02 UTC (rev 154578)
+++ trunk/Source/WebCore/platform/ios/PasteboardIOS.mm	2013-08-25 19:43:55 UTC (rev 154579)
@@ -615,7 +615,7 @@
     // Enforce changeCount ourselves for security. We check after reading instead of before to be
     // sure it doesn't change between our testing the change count and accessing the data.
     if (m_changeCount != m_frame->editor().client()->pasteboardChangeCount())
-        return ListHashSet<String>();
+        return Vector<String>();
 
     ListHashSet<String> result;
     NSUInteger count = [types count];
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to