[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

kocienda kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 05:58:17 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit a02693a19dc0b9e44d7bb9891472e6ae8b6d5b5a
Author: kocienda <kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Mar 22 17:15:04 2002 +0000

    2002-03-22  Kenneth Kocienda  <kocienda at apple.com>
    
            Moved KWQKloader to the new thread-safe API for accessing handle attributes.
    
            * src/kwq/KWQKloader.mm: (-[URLLoadClient IFURLHandleResourceDidBeginLoading:]),
            (-[URLLoadClient IFURLHandleResourceDidCancelLoading:]), (-[URLLoadClient
            IFURLHandleResourceDidFinishLoading:data:]), (-[URLLoadClient
            IFURLHandle:resourceDataDidBecomeAvailable:]), (-[URLLoadClient
            IFURLHandle:resourceDidFailLoadingWithResult:]):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@803 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2002-12-03 b/WebCore/ChangeLog-2002-12-03
index 93f3b13..39ed912 100644
--- a/WebCore/ChangeLog-2002-12-03
+++ b/WebCore/ChangeLog-2002-12-03
@@ -1,3 +1,13 @@
+2002-03-22  Kenneth Kocienda  <kocienda at apple.com>
+
+        Moved KWQKloader to the new thread-safe API for accessing handle attributes.
+
+	* src/kwq/KWQKloader.mm: (-[URLLoadClient IFURLHandleResourceDidBeginLoading:]),
+	(-[URLLoadClient IFURLHandleResourceDidCancelLoading:]), (-[URLLoadClient
+	IFURLHandleResourceDidFinishLoading:data:]), (-[URLLoadClient
+	IFURLHandle:resourceDataDidBecomeAvailable:]), (-[URLLoadClient
+	IFURLHandle:resourceDidFailLoadingWithResult:]):
+
 2002-03-22  Richard Williamson  <rjw at apple.com>
 
         Fixed subtle measurement problems.  These were most evident of pages
diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 93f3b13..39ed912 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,13 @@
+2002-03-22  Kenneth Kocienda  <kocienda at apple.com>
+
+        Moved KWQKloader to the new thread-safe API for accessing handle attributes.
+
+	* src/kwq/KWQKloader.mm: (-[URLLoadClient IFURLHandleResourceDidBeginLoading:]),
+	(-[URLLoadClient IFURLHandleResourceDidCancelLoading:]), (-[URLLoadClient
+	IFURLHandleResourceDidFinishLoading:data:]), (-[URLLoadClient
+	IFURLHandle:resourceDataDidBecomeAvailable:]), (-[URLLoadClient
+	IFURLHandle:resourceDidFailLoadingWithResult:]):
+
 2002-03-22  Richard Williamson  <rjw at apple.com>
 
         Fixed subtle measurement problems.  These were most evident of pages
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 93f3b13..39ed912 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,13 @@
+2002-03-22  Kenneth Kocienda  <kocienda at apple.com>
+
+        Moved KWQKloader to the new thread-safe API for accessing handle attributes.
+
+	* src/kwq/KWQKloader.mm: (-[URLLoadClient IFURLHandleResourceDidBeginLoading:]),
+	(-[URLLoadClient IFURLHandleResourceDidCancelLoading:]), (-[URLLoadClient
+	IFURLHandleResourceDidFinishLoading:data:]), (-[URLLoadClient
+	IFURLHandle:resourceDataDidBecomeAvailable:]), (-[URLLoadClient
+	IFURLHandle:resourceDidFailLoadingWithResult:]):
+
 2002-03-22  Richard Williamson  <rjw at apple.com>
 
         Fixed subtle measurement problems.  These were most evident of pages
diff --git a/WebCore/kwq/KWQKloader.mm b/WebCore/kwq/KWQKloader.mm
index 4faebad..5f1719f 100644
--- a/WebCore/kwq/KWQKloader.mm
+++ b/WebCore/kwq/KWQKloader.mm
@@ -1013,7 +1013,7 @@ void DocLoader::removeCachedObject( CachedObject* o ) const
 {
     void *userData;
     
-    userData = [[[sender attributes] objectForKey:IFURLHandleUserData] pointerValue];
+    userData = [[sender attributeForKey:IFURLHandleUserData] pointerValue];
     
     KIO::TransferJob *job = static_cast<KIO::TransferJob *>(userData);
     KWQDEBUGLEVEL2 (KWQ_LOG_LOADING, "dataSource = 0x%08x for URL %s\n", m_dataSource, job->url().url().latin1());
@@ -1024,7 +1024,7 @@ void DocLoader::removeCachedObject( CachedObject* o ) const
     id controller;
     void *userData;
     
-    userData = [[[sender attributes] objectForKey:IFURLHandleUserData] pointerValue];
+    userData = [[sender attributeForKey:IFURLHandleUserData] pointerValue];
     
     KIO::TransferJob *job = static_cast<KIO::TransferJob *>(userData);
     QString urlString = job->url().url();
@@ -1050,7 +1050,7 @@ void DocLoader::removeCachedObject( CachedObject* o ) const
     id controller;
     void *userData;
     
-    userData = [[[sender attributes] objectForKey:IFURLHandleUserData] pointerValue];
+    userData = [[sender attributeForKey:IFURLHandleUserData] pointerValue];
     
     KIO::TransferJob *job = static_cast<KIO::TransferJob *>(userData);
     QString urlString = job->url().url();
@@ -1075,7 +1075,7 @@ void DocLoader::removeCachedObject( CachedObject* o ) const
 {
     void *userData;
     
-    userData = [[[sender attributes] objectForKey:IFURLHandleUserData] pointerValue];
+    userData = [[sender attributeForKey:IFURLHandleUserData] pointerValue];
     
     KIO::TransferJob *job = static_cast<KIO::TransferJob *>(userData);
     QString urlString = job->url().url();
@@ -1099,7 +1099,7 @@ void DocLoader::removeCachedObject( CachedObject* o ) const
 {
     void *userData;
     
-    userData = [[[sender attributes] objectForKey:IFURLHandleUserData] pointerValue];
+    userData = [[sender attributeForKey:IFURLHandleUserData] pointerValue];
     
     KIO::TransferJob *job = static_cast<KIO::TransferJob *>(userData);
     KWQDEBUGLEVEL3 (KWQ_LOG_LOADING, "dataSource = 0x%08x, result = %d, URL = %s\n", m_dataSource, result, job->url().url().latin1());
diff --git a/WebCore/kwq/KWQLoader.mm b/WebCore/kwq/KWQLoader.mm
index 4faebad..5f1719f 100644
--- a/WebCore/kwq/KWQLoader.mm
+++ b/WebCore/kwq/KWQLoader.mm
@@ -1013,7 +1013,7 @@ void DocLoader::removeCachedObject( CachedObject* o ) const
 {
     void *userData;
     
-    userData = [[[sender attributes] objectForKey:IFURLHandleUserData] pointerValue];
+    userData = [[sender attributeForKey:IFURLHandleUserData] pointerValue];
     
     KIO::TransferJob *job = static_cast<KIO::TransferJob *>(userData);
     KWQDEBUGLEVEL2 (KWQ_LOG_LOADING, "dataSource = 0x%08x for URL %s\n", m_dataSource, job->url().url().latin1());
@@ -1024,7 +1024,7 @@ void DocLoader::removeCachedObject( CachedObject* o ) const
     id controller;
     void *userData;
     
-    userData = [[[sender attributes] objectForKey:IFURLHandleUserData] pointerValue];
+    userData = [[sender attributeForKey:IFURLHandleUserData] pointerValue];
     
     KIO::TransferJob *job = static_cast<KIO::TransferJob *>(userData);
     QString urlString = job->url().url();
@@ -1050,7 +1050,7 @@ void DocLoader::removeCachedObject( CachedObject* o ) const
     id controller;
     void *userData;
     
-    userData = [[[sender attributes] objectForKey:IFURLHandleUserData] pointerValue];
+    userData = [[sender attributeForKey:IFURLHandleUserData] pointerValue];
     
     KIO::TransferJob *job = static_cast<KIO::TransferJob *>(userData);
     QString urlString = job->url().url();
@@ -1075,7 +1075,7 @@ void DocLoader::removeCachedObject( CachedObject* o ) const
 {
     void *userData;
     
-    userData = [[[sender attributes] objectForKey:IFURLHandleUserData] pointerValue];
+    userData = [[sender attributeForKey:IFURLHandleUserData] pointerValue];
     
     KIO::TransferJob *job = static_cast<KIO::TransferJob *>(userData);
     QString urlString = job->url().url();
@@ -1099,7 +1099,7 @@ void DocLoader::removeCachedObject( CachedObject* o ) const
 {
     void *userData;
     
-    userData = [[[sender attributes] objectForKey:IFURLHandleUserData] pointerValue];
+    userData = [[sender attributeForKey:IFURLHandleUserData] pointerValue];
     
     KIO::TransferJob *job = static_cast<KIO::TransferJob *>(userData);
     KWQDEBUGLEVEL3 (KWQ_LOG_LOADING, "dataSource = 0x%08x, result = %d, URL = %s\n", m_dataSource, result, job->url().url().latin1());
diff --git a/WebCore/kwq/KWQLoaderImpl.mm b/WebCore/kwq/KWQLoaderImpl.mm
index 4faebad..5f1719f 100644
--- a/WebCore/kwq/KWQLoaderImpl.mm
+++ b/WebCore/kwq/KWQLoaderImpl.mm
@@ -1013,7 +1013,7 @@ void DocLoader::removeCachedObject( CachedObject* o ) const
 {
     void *userData;
     
-    userData = [[[sender attributes] objectForKey:IFURLHandleUserData] pointerValue];
+    userData = [[sender attributeForKey:IFURLHandleUserData] pointerValue];
     
     KIO::TransferJob *job = static_cast<KIO::TransferJob *>(userData);
     KWQDEBUGLEVEL2 (KWQ_LOG_LOADING, "dataSource = 0x%08x for URL %s\n", m_dataSource, job->url().url().latin1());
@@ -1024,7 +1024,7 @@ void DocLoader::removeCachedObject( CachedObject* o ) const
     id controller;
     void *userData;
     
-    userData = [[[sender attributes] objectForKey:IFURLHandleUserData] pointerValue];
+    userData = [[sender attributeForKey:IFURLHandleUserData] pointerValue];
     
     KIO::TransferJob *job = static_cast<KIO::TransferJob *>(userData);
     QString urlString = job->url().url();
@@ -1050,7 +1050,7 @@ void DocLoader::removeCachedObject( CachedObject* o ) const
     id controller;
     void *userData;
     
-    userData = [[[sender attributes] objectForKey:IFURLHandleUserData] pointerValue];
+    userData = [[sender attributeForKey:IFURLHandleUserData] pointerValue];
     
     KIO::TransferJob *job = static_cast<KIO::TransferJob *>(userData);
     QString urlString = job->url().url();
@@ -1075,7 +1075,7 @@ void DocLoader::removeCachedObject( CachedObject* o ) const
 {
     void *userData;
     
-    userData = [[[sender attributes] objectForKey:IFURLHandleUserData] pointerValue];
+    userData = [[sender attributeForKey:IFURLHandleUserData] pointerValue];
     
     KIO::TransferJob *job = static_cast<KIO::TransferJob *>(userData);
     QString urlString = job->url().url();
@@ -1099,7 +1099,7 @@ void DocLoader::removeCachedObject( CachedObject* o ) const
 {
     void *userData;
     
-    userData = [[[sender attributes] objectForKey:IFURLHandleUserData] pointerValue];
+    userData = [[sender attributeForKey:IFURLHandleUserData] pointerValue];
     
     KIO::TransferJob *job = static_cast<KIO::TransferJob *>(userData);
     KWQDEBUGLEVEL3 (KWQ_LOG_LOADING, "dataSource = 0x%08x, result = %d, URL = %s\n", m_dataSource, result, job->url().url().latin1());
diff --git a/WebCore/src/kwq/KWQKloader.mm b/WebCore/src/kwq/KWQKloader.mm
index 4faebad..5f1719f 100644
--- a/WebCore/src/kwq/KWQKloader.mm
+++ b/WebCore/src/kwq/KWQKloader.mm
@@ -1013,7 +1013,7 @@ void DocLoader::removeCachedObject( CachedObject* o ) const
 {
     void *userData;
     
-    userData = [[[sender attributes] objectForKey:IFURLHandleUserData] pointerValue];
+    userData = [[sender attributeForKey:IFURLHandleUserData] pointerValue];
     
     KIO::TransferJob *job = static_cast<KIO::TransferJob *>(userData);
     KWQDEBUGLEVEL2 (KWQ_LOG_LOADING, "dataSource = 0x%08x for URL %s\n", m_dataSource, job->url().url().latin1());
@@ -1024,7 +1024,7 @@ void DocLoader::removeCachedObject( CachedObject* o ) const
     id controller;
     void *userData;
     
-    userData = [[[sender attributes] objectForKey:IFURLHandleUserData] pointerValue];
+    userData = [[sender attributeForKey:IFURLHandleUserData] pointerValue];
     
     KIO::TransferJob *job = static_cast<KIO::TransferJob *>(userData);
     QString urlString = job->url().url();
@@ -1050,7 +1050,7 @@ void DocLoader::removeCachedObject( CachedObject* o ) const
     id controller;
     void *userData;
     
-    userData = [[[sender attributes] objectForKey:IFURLHandleUserData] pointerValue];
+    userData = [[sender attributeForKey:IFURLHandleUserData] pointerValue];
     
     KIO::TransferJob *job = static_cast<KIO::TransferJob *>(userData);
     QString urlString = job->url().url();
@@ -1075,7 +1075,7 @@ void DocLoader::removeCachedObject( CachedObject* o ) const
 {
     void *userData;
     
-    userData = [[[sender attributes] objectForKey:IFURLHandleUserData] pointerValue];
+    userData = [[sender attributeForKey:IFURLHandleUserData] pointerValue];
     
     KIO::TransferJob *job = static_cast<KIO::TransferJob *>(userData);
     QString urlString = job->url().url();
@@ -1099,7 +1099,7 @@ void DocLoader::removeCachedObject( CachedObject* o ) const
 {
     void *userData;
     
-    userData = [[[sender attributes] objectForKey:IFURLHandleUserData] pointerValue];
+    userData = [[sender attributeForKey:IFURLHandleUserData] pointerValue];
     
     KIO::TransferJob *job = static_cast<KIO::TransferJob *>(userData);
     KWQDEBUGLEVEL3 (KWQ_LOG_LOADING, "dataSource = 0x%08x, result = %d, URL = %s\n", m_dataSource, result, job->url().url().latin1());

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list