Title: [98318] trunk/Source
Revision
98318
Author
[email protected]
Date
2011-10-24 21:33:38 -0700 (Mon, 24 Oct 2011)

Log Message

Build fix: removed some cases of threadsafeCopy() that I missed in
my previous patch.

Source/_javascript_Core: 

* _javascript_Core.order:

Source/WebKit/win: 

* WebDatabaseManager.cpp:
(DidModifyOriginData::dispatchToMainThread):
* WebDownloadCFNet.cpp:
(WebDownload::initToResumeWithBundle):
* WebIconDatabase.cpp:
(WebIconDatabase::didImportIconURLForPageURL):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (98317 => 98318)


--- trunk/Source/_javascript_Core/ChangeLog	2011-10-25 04:26:38 UTC (rev 98317)
+++ trunk/Source/_javascript_Core/ChangeLog	2011-10-25 04:33:38 UTC (rev 98318)
@@ -1,5 +1,12 @@
 2011-10-24  Geoffrey Garen  <[email protected]>
 
+        Build fix: removed some cases of threadsafeCopy() that I missed in
+        my previous patch.
+
+        * _javascript_Core.order:
+
+2011-10-24  Geoffrey Garen  <[email protected]>
+
         Removed SharedUChar and tightened language around its previous uses
         https://bugs.webkit.org/show_bug.cgi?id=70698
 

Modified: trunk/Source/_javascript_Core/_javascript_Core.order (98317 => 98318)


--- trunk/Source/_javascript_Core/_javascript_Core.order	2011-10-25 04:26:38 UTC (rev 98317)
+++ trunk/Source/_javascript_Core/_javascript_Core.order	2011-10-25 04:33:38 UTC (rev 98318)
@@ -82,8 +82,6 @@
 __ZN3WTF6String8fromUTF8EPKcm
 __ZN3WTF7Unicode18convertUTF8ToUTF16EPPKcS2_PPtS4_b
 __ZN3WTF15ThreadCondition6signalEv
-__ZNK3WTF6String14threadsafeCopyEv
-__ZNK3WTF10StringImpl14threadsafeCopyEv
 __ZN3WTF7CStringC1EPKc
 __ZN3WTF7CString4initEPKcm
 __ZNK3WTF6String4utf8Eb

Modified: trunk/Source/WebKit/win/ChangeLog (98317 => 98318)


--- trunk/Source/WebKit/win/ChangeLog	2011-10-25 04:26:38 UTC (rev 98317)
+++ trunk/Source/WebKit/win/ChangeLog	2011-10-25 04:33:38 UTC (rev 98318)
@@ -1,3 +1,15 @@
+2011-10-24  Geoffrey Garen  <[email protected]>
+
+        Build fix: removed some cases of threadsafeCopy() that I missed in
+        my previous patch.
+
+        * WebDatabaseManager.cpp:
+        (DidModifyOriginData::dispatchToMainThread):
+        * WebDownloadCFNet.cpp:
+        (WebDownload::initToResumeWithBundle):
+        * WebIconDatabase.cpp:
+        (WebIconDatabase::didImportIconURLForPageURL):
+
 2011-10-24  Ryosuke Niwa  <[email protected]>
 
         threadsafeCopy has been renamed to isolatedCopy.

Modified: trunk/Source/WebKit/win/WebDownloadCFNet.cpp (98317 => 98318)


--- trunk/Source/WebKit/win/WebDownloadCFNet.cpp	2011-10-25 04:26:38 UTC (rev 98317)
+++ trunk/Source/WebKit/win/WebDownloadCFNet.cpp	2011-10-25 04:33:38 UTC (rev 98318)
@@ -194,7 +194,7 @@
     // Attempt to remove the ".download" extension from the bundle for the final file destination
     // Failing that, we clear m_destination and will ask the delegate later once the download starts
     if (m_bundlePath.endsWith(DownloadBundle::fileExtension(), false)) {
-        m_destination = m_bundlePath.threadsafeCopy();
+        m_destination = m_bundlePath.isolatedCopy();
         m_destination.truncate(m_destination.length() - DownloadBundle::fileExtension().length());
     } else
         m_destination = String();

Modified: trunk/Source/WebKit/win/WebIconDatabase.cpp (98317 => 98318)


--- trunk/Source/WebKit/win/WebIconDatabase.cpp	2011-10-25 04:26:38 UTC (rev 98317)
+++ trunk/Source/WebKit/win/WebIconDatabase.cpp	2011-10-25 04:33:38 UTC (rev 98318)
@@ -336,7 +336,7 @@
 void WebIconDatabase::didImportIconURLForPageURL(const WTF::String& pageURL)
 {
     MutexLocker locker(m_notificationMutex);
-    m_notificationQueue.append(pageURL.threadsafeCopy());
+    m_notificationQueue.append(pageURL.isolatedCopy());
     scheduleNotificationDelivery();
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to