Title: [154606] trunk/Source/WebCore
Revision
154606
Author
[email protected]
Date
2013-08-26 09:13:57 -0700 (Mon, 26 Aug 2013)

Log Message

[Windows] Build fix after r154578.  Return Vector<String>() instead
of ListHashSet<String>().

* platform/win/PasteboardWin.cpp:
(WebCore::Pasteboard::types):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (154605 => 154606)


--- trunk/Source/WebCore/ChangeLog	2013-08-26 16:09:50 UTC (rev 154605)
+++ trunk/Source/WebCore/ChangeLog	2013-08-26 16:13:57 UTC (rev 154606)
@@ -1,5 +1,13 @@
 2013-08-26  Brent Fulgham  <[email protected]>
 
+        [Windows] Build fix after r154578.  Return Vector<String>() instead
+        of ListHashSet<String>().
+
+        * platform/win/PasteboardWin.cpp:
+        (WebCore::Pasteboard::types):
+
+2013-08-26  Brent Fulgham  <[email protected]>
+
         [Windows] Build fix after r154580.
 
         * rendering/RenderThemeWin.cpp: Mirror changes made for other ports now that

Modified: trunk/Source/WebCore/platform/win/PasteboardWin.cpp (154605 => 154606)


--- trunk/Source/WebCore/platform/win/PasteboardWin.cpp	2013-08-26 16:09:50 UTC (rev 154605)
+++ trunk/Source/WebCore/platform/win/PasteboardWin.cpp	2013-08-26 16:13:57 UTC (rev 154606)
@@ -265,16 +265,16 @@
     ListHashSet<String> results;
 
     if (!m_dataObject && m_dragDataMap.isEmpty())
-        return results;
+        return Vector<String>();
 
     if (m_dataObject) {
         COMPtr<IEnumFORMATETC> itr;
 
         if (FAILED(m_dataObject->EnumFormatEtc(DATADIR_GET, &itr)))
-            return results;
+            return Vector<String>();
 
         if (!itr)
-            return results;
+            return Vector<String>();
 
         FORMATETC data;
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to