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

yuzo at google.com yuzo at google.com
Wed Dec 22 11:15:27 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit d40488693a9386238a36b9c501806406e74bc31e
Author: yuzo at google.com <yuzo at google.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Jul 16 03:06:43 2010 +0000

    2010-07-15  Yuzo Fujishima  <yuzo at google.com>
    
            Reviewed by Darin Adler.
    
            Fix for Bug 42362 - CSSSegmentedFontFace::isLoaded() const is not used anywhere
            Remove the method.
            https://bugs.webkit.org/show_bug.cgi?id=42362
    
            No new tests because of no behavior changes.
    
            * css/CSSSegmentedFontFace.cpp:
            * css/CSSSegmentedFontFace.h:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@63510 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 8061a3d..209a454 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,16 @@
+2010-07-15  Yuzo Fujishima  <yuzo at google.com>
+
+        Reviewed by Darin Adler.
+
+        Fix for Bug 42362 - CSSSegmentedFontFace::isLoaded() const is not used anywhere
+        Remove the method.
+        https://bugs.webkit.org/show_bug.cgi?id=42362
+
+        No new tests because of no behavior changes.
+
+        * css/CSSSegmentedFontFace.cpp:
+        * css/CSSSegmentedFontFace.h:
+
 2010-07-15  Erik Arvidsson  <arv at chromium.org>
 
         Reviewed by David Levin.
diff --git a/WebCore/css/CSSSegmentedFontFace.cpp b/WebCore/css/CSSSegmentedFontFace.cpp
index b13dd9c..075d881 100644
--- a/WebCore/css/CSSSegmentedFontFace.cpp
+++ b/WebCore/css/CSSSegmentedFontFace.cpp
@@ -59,16 +59,6 @@ void CSSSegmentedFontFace::pruneTable()
     m_fontDataTable.clear();
 }
 
-bool CSSSegmentedFontFace::isLoaded() const
-{
-    unsigned size = m_fontFaces.size();
-    for (unsigned i = 0; i < size; i++) {
-        if (!m_fontFaces[i]->isLoaded())
-            return false;
-    }
-    return true;
-}
-
 bool CSSSegmentedFontFace::isValid() const
 {
     unsigned size = m_fontFaces.size();
diff --git a/WebCore/css/CSSSegmentedFontFace.h b/WebCore/css/CSSSegmentedFontFace.h
index 57a3c58..d44ddba 100644
--- a/WebCore/css/CSSSegmentedFontFace.h
+++ b/WebCore/css/CSSSegmentedFontFace.h
@@ -45,7 +45,6 @@ public:
     static PassRefPtr<CSSSegmentedFontFace> create(CSSFontSelector* selector) { return adoptRef(new CSSSegmentedFontFace(selector)); }
     ~CSSSegmentedFontFace();
 
-    bool isLoaded() const;
     bool isValid() const;
     CSSFontSelector* fontSelector() const { return m_fontSelector; }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list