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

yurys at chromium.org yurys at chromium.org
Wed Dec 22 13:03:03 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 0f12c1589a7c876dde90bf029c5b8988bc93730b
Author: yurys at chromium.org <yurys at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Sep 6 13:29:34 2010 +0000

    2010-09-06  Yury Semikhatsky  <yurys at chromium.org>
    
            Unreviewed. Attempt to fix random test crashes after r66720.
    
            * WebCoreSupport/InspectorClientQt.cpp:
            (WebCore::InspectorFrontendClientQt::~InspectorFrontendClientQt):
            * WebCoreSupport/InspectorClientQt.h:
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@66824 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/qt/ChangeLog b/WebKit/qt/ChangeLog
index f4dd2db..1b9c529 100644
--- a/WebKit/qt/ChangeLog
+++ b/WebKit/qt/ChangeLog
@@ -1,3 +1,11 @@
+2010-09-06  Yury Semikhatsky  <yurys at chromium.org>
+
+        Unreviewed. Attempt to fix random test crashes after r66720.
+
+        * WebCoreSupport/InspectorClientQt.cpp:
+        (WebCore::InspectorFrontendClientQt::~InspectorFrontendClientQt):
+        * WebCoreSupport/InspectorClientQt.h:
+
 2010-09-05  Sheriff Bot  <webkit.review.bot at gmail.com>
 
         Unreviewed, rolling out r66801.
diff --git a/WebKit/qt/WebCoreSupport/InspectorClientQt.cpp b/WebKit/qt/WebCoreSupport/InspectorClientQt.cpp
index 1a90480..5378ccf 100644
--- a/WebKit/qt/WebCoreSupport/InspectorClientQt.cpp
+++ b/WebKit/qt/WebCoreSupport/InspectorClientQt.cpp
@@ -254,6 +254,13 @@ InspectorFrontendClientQt::InspectorFrontendClientQt(QWebPage* inspectedWebPage,
 {
 }
 
+InspectorFrontendClientQt::~InspectorFrontendClientQt()
+{
+    ASSERT(m_destroyingInspectorView);
+    if (m_inspectorClient)
+        m_inspectorClient->releaseFrontendPage();
+}
+
 void InspectorFrontendClientQt::frontendLoaded()
 {
     InspectorFrontendClientLocal::frontendLoaded();
diff --git a/WebKit/qt/WebCoreSupport/InspectorClientQt.h b/WebKit/qt/WebCoreSupport/InspectorClientQt.h
index e0ee810..0074159 100644
--- a/WebKit/qt/WebCoreSupport/InspectorClientQt.h
+++ b/WebKit/qt/WebCoreSupport/InspectorClientQt.h
@@ -72,6 +72,7 @@ private:
 class InspectorFrontendClientQt : public InspectorFrontendClientLocal {
 public:
     InspectorFrontendClientQt(QWebPage* inspectedWebPage, PassOwnPtr<QWebView> inspectorView, InspectorClientQt* inspectorClient);
+    virtual ~InspectorFrontendClientQt();
 
     virtual void frontendLoaded();
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list