[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

zoltan at webkit.org zoltan at webkit.org
Wed Apr 7 23:17:16 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit 238cdeb15d1788fd319a8d11a512311bd0942adb
Author: zoltan at webkit.org <zoltan at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Oct 30 23:10:56 2009 +0000

    Allow custom memory allocation control for WebCore's MediaQueryEvaluator
    https://bugs.webkit.org/show_bug.cgi?id=30854
    
    Reviewed by Darin Adler.
    
    Inherits MediaQueryEvaluator class from Noncopyable because it is
    instantiated by 'new' in WebCore/css/CSSStyleSelector.cpp:401 and
    it is no need to be copyable.
    
    * css/MediaQueryEvaluator.h:
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@50367 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 9b6dffb..1301859 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -2,6 +2,19 @@
 
         Reviewed by Darin Adler.
 
+        Allow custom memory allocation control for WebCore's MediaQueryEvaluator
+        https://bugs.webkit.org/show_bug.cgi?id=30854
+
+        Inherits MediaQueryEvaluator class from Noncopyable because it is
+        instantiated by 'new' in WebCore/css/CSSStyleSelector.cpp:401 and   
+        it is no need to be copyable.
+
+        * css/MediaQueryEvaluator.h:
+
+2009-10-30  Zoltan Horvath  <zoltan at webkit.org>
+
+        Reviewed by Darin Adler.
+
         Allow custom memory allocation control for WebCore's CSSRuleSet
         https://bugs.webkit.org/show_bug.cgi?id=30852
 
diff --git a/WebCore/css/MediaQueryEvaluator.h b/WebCore/css/MediaQueryEvaluator.h
index 404504b..00ac394 100644
--- a/WebCore/css/MediaQueryEvaluator.h
+++ b/WebCore/css/MediaQueryEvaluator.h
@@ -49,7 +49,7 @@ class MediaQueryExp;
  * the device characteristics are not known. This can be used to prune the loading
  * of stylesheets to only those which are probable to match.
  */
-class MediaQueryEvaluator {
+class MediaQueryEvaluator : public Noncopyable {
 public:
     /** Creates evaluator which evaluates only simple media queries
      *  Evaluator returns true for "all", and returns value of \mediaFeatureResult

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list