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

barraclough at apple.com barraclough at apple.com
Wed Dec 22 11:51:46 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 5f2be6c402da0171f3c46aa5dd74983a7df2f7dd
Author: barraclough at apple.com <barraclough at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Aug 10 02:13:59 2010 +0000

    Speculative chromium build fix V.
    
    * tests/KURLTest.cpp:
    (ComponentCase::TEST):
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@65034 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/chromium/ChangeLog b/WebKit/chromium/ChangeLog
index 22ed612..a9bb69b 100644
--- a/WebKit/chromium/ChangeLog
+++ b/WebKit/chromium/ChangeLog
@@ -1,5 +1,12 @@
 2010-08-09  Gavin Barraclough  <barraclough at apple.com>
 
+        Speculative chromium build fix V.
+
+        * tests/KURLTest.cpp:
+        (ComponentCase::TEST):
+
+2010-08-09  Gavin Barraclough  <barraclough at apple.com>
+
         Speculative chromium build fix IV.
 
         * src/WebPageSerializerImpl.h:
diff --git a/WebKit/chromium/tests/KURLTest.cpp b/WebKit/chromium/tests/KURLTest.cpp
index cf732b2..c46da2a 100644
--- a/WebKit/chromium/tests/KURLTest.cpp
+++ b/WebKit/chromium/tests/KURLTest.cpp
@@ -162,12 +162,12 @@ TEST(KURLTest, UTF8)
     // code depends on being able to compare the result of the .string()
     // getter with another String, and the isASCIIness of the two
     // strings must match for these functions (like equalIgnoringCase).
-    EXPECT_TRUE(WebCore::equalIgnoringCase(asciiKURL, WTF::String(asciiURL)));
+    EXPECT_TRUE(WTF::equalIgnoringCase(asciiKURL, WTF::String(asciiURL)));
 
     // Reproduce code path in FrameLoader.cpp -- equalIgnoringCase implicitly
     // expects gkurl.protocol() to have been created as ascii.
     WebCore::KURL mailto(WebCore::ParsedURLString, "mailto:foo at foo.com");
-    EXPECT_TRUE(WebCore::equalIgnoringCase(mailto.protocol(), "mailto"));
+    EXPECT_TRUE(WTF::equalIgnoringCase(mailto.protocol(), "mailto"));
 
     const char utf8URL[] = "http://foo/bar#\xe4\xbd\xa0\xe5\xa5\xbd";
     WebCore::KURL utf8KURL(WebCore::ParsedURLString, utf8URL);

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list