[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:21 UTC 2010


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

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

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index fde5cdf..c40fb6b 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -2,6 +2,19 @@
 
         Reviewed by Darin Adler.
 
+        Allow custom memory allocation control for WebCore's MediaQueryResult
+        https://bugs.webkit.org/show_bug.cgi?id=30857
+
+        Inherits MediaQueryResult class from Noncopyable because it is
+        instantiated by 'new' in WebCore/css/CSSStyleSelector.cpp:5984 and
+        it is no need to be copyable.
+
+        * css/CSSStyleSelector.h:
+
+2009-10-30  Zoltan Horvath  <zoltan at webkit.org>
+
+        Reviewed by Darin Adler.
+
         Allow custom memory allocation control for WebCore's MediaQueryEvaluator
         https://bugs.webkit.org/show_bug.cgi?id=30854
 
diff --git a/WebCore/css/CSSStyleSelector.h b/WebCore/css/CSSStyleSelector.h
index 8f56a6f..7eb4ed3 100644
--- a/WebCore/css/CSSStyleSelector.h
+++ b/WebCore/css/CSSStyleSelector.h
@@ -65,7 +65,7 @@ class StyleSheetList;
 class StyledElement;
 class WebKitCSSKeyframesRule;
 
-class MediaQueryResult {
+class MediaQueryResult : public Noncopyable {
 public:
     MediaQueryResult(const MediaQueryExp& expr, bool result)
         : m_expression(expr)

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list