[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

weinig at apple.com weinig at apple.com
Wed Dec 22 12:59:55 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 4f12ae8a03a640d23b162933f91c0ae899bab828
Author: weinig at apple.com <weinig at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Sep 3 20:53:30 2010 +0000

    Change WKDictionaryIsMutable to take a WKDictionaryRef instead of a WKMutableDictionaryRef.
    If the type is already states it is mutable, there would be no reason for the check.
    
    Reviewed by Gavin Barraclough.
    
    * UIProcess/API/C/WKMutableDictionary.cpp:
    (WKDictionaryIsMutable):
    * UIProcess/API/C/WKMutableDictionary.h:
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@66769 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit2/ChangeLog b/WebKit2/ChangeLog
index d922b4e..71adfff 100644
--- a/WebKit2/ChangeLog
+++ b/WebKit2/ChangeLog
@@ -1,3 +1,14 @@
+2010-09-03  Sam Weinig  <sam at webkit.org>
+
+        Reviewed by Gavin Barraclough.
+
+        Change WKDictionaryIsMutable to take a WKDictionaryRef instead of a WKMutableDictionaryRef.
+        If the type is already states it is mutable, there would be no reason for the check.
+
+        * UIProcess/API/C/WKMutableDictionary.cpp:
+        (WKDictionaryIsMutable):
+        * UIProcess/API/C/WKMutableDictionary.h:
+
 2010-09-02  Sam Weinig  <sam at webkit.org>
 
         Reviewed by Anders Carlsson.
diff --git a/WebKit2/UIProcess/API/C/WKMutableDictionary.cpp b/WebKit2/UIProcess/API/C/WKMutableDictionary.cpp
index bacaee3..222260c 100644
--- a/WebKit2/UIProcess/API/C/WKMutableDictionary.cpp
+++ b/WebKit2/UIProcess/API/C/WKMutableDictionary.cpp
@@ -36,7 +36,7 @@ WKMutableDictionaryRef WKMutableDictionaryCreate()
     return toRef(dictionary.release().releaseRef());
 }
 
-bool WKDictionaryIsMutable(WKMutableDictionaryRef dictionaryRef)
+bool WKDictionaryIsMutable(WKDictionaryRef dictionaryRef)
 {
     return toWK(dictionaryRef)->isMutable();
 }
diff --git a/WebKit2/UIProcess/API/C/WKMutableDictionary.h b/WebKit2/UIProcess/API/C/WKMutableDictionary.h
index 41edee9..467c1d4 100644
--- a/WebKit2/UIProcess/API/C/WKMutableDictionary.h
+++ b/WebKit2/UIProcess/API/C/WKMutableDictionary.h
@@ -38,7 +38,7 @@ extern "C" {
 
 WK_EXPORT WKMutableDictionaryRef WKMutableDictionaryCreate();
 
-WK_EXPORT bool WKDictionaryIsMutable(WKMutableDictionaryRef dictionary);
+WK_EXPORT bool WKDictionaryIsMutable(WKDictionaryRef dictionary);
 
 WK_EXPORT bool WKDictionaryAddItem(WKMutableDictionaryRef dictionary, WKStringRef key, WKTypeRef item);
 WK_EXPORT bool WKDictionarySetItem(WKMutableDictionaryRef dictionary, WKStringRef key, WKTypeRef item);

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list