[SCM] WebKit Debian packaging branch, debian/experimental, updated. debian/1.3.8-1-1049-g2e11a8e
yurys at chromium.org
yurys at chromium.org
Fri Jan 21 14:41:17 UTC 2011
The following commit has been merged in the debian/experimental branch:
commit 36fe29aa570a9d0d601ba99b53a06fb1428a0a65
Author: yurys at chromium.org <yurys at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Fri Dec 24 18:20:32 2010 +0000
2010-12-24 Yury Semikhatsky <yurys at chromium.org>
Unreviewed. Fix compilation on Windows.
* inspector/InspectorStyleSheet.cpp:
(WebCore::InspectorStyle::~InspectorStyle): added explicit empty destructor
* inspector/InspectorStyleSheet.h:
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@74638 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 39a9bb7..5540f51 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,5 +1,13 @@
2010-12-24 Yury Semikhatsky <yurys at chromium.org>
+ Unreviewed. Fix compilation on Windows.
+
+ * inspector/InspectorStyleSheet.cpp:
+ (WebCore::InspectorStyle::~InspectorStyle): added explicit empty destructor
+ * inspector/InspectorStyleSheet.h:
+
+2010-12-24 Yury Semikhatsky <yurys at chromium.org>
+
Reviewed by Darin Adler.
inspector/debugger-step-out.html crashing intermittently in the bots
diff --git a/WebCore/inspector/InspectorStyleSheet.cpp b/WebCore/inspector/InspectorStyleSheet.cpp
index 61907a3..4af0371 100644
--- a/WebCore/inspector/InspectorStyleSheet.cpp
+++ b/WebCore/inspector/InspectorStyleSheet.cpp
@@ -144,6 +144,10 @@ InspectorStyle::InspectorStyle(const InspectorCSSId& styleId, PassRefPtr<CSSStyl
ASSERT(m_style);
}
+InspectorStyle::~InspectorStyle()
+{
+}
+
PassRefPtr<InspectorObject> InspectorStyle::buildObjectForStyle() const
{
RefPtr<InspectorObject> result = InspectorObject::create();
diff --git a/WebCore/inspector/InspectorStyleSheet.h b/WebCore/inspector/InspectorStyleSheet.h
index 9d5c842..606d318 100644
--- a/WebCore/inspector/InspectorStyleSheet.h
+++ b/WebCore/inspector/InspectorStyleSheet.h
@@ -122,6 +122,7 @@ struct InspectorStyleProperty {
class InspectorStyle : public RefCounted<InspectorStyle> {
public:
static PassRefPtr<InspectorStyle> create(const InspectorCSSId& styleId, PassRefPtr<CSSStyleDeclaration> style, InspectorStyleSheet* parentStyleSheet);
+ virtual ~InspectorStyle();
CSSStyleDeclaration* cssStyle() const { return m_style.get(); }
PassRefPtr<InspectorObject> buildObjectForStyle() const;
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list