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

johnnyg at google.com johnnyg at google.com
Wed Dec 22 11:59:32 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 5f319d662c0556cc3601b71c5160eef0c34385bf
Author: johnnyg at google.com <johnnyg at google.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Aug 12 16:59:15 2010 +0000

    2010-08-12  John Gregg  <johnnyg at google.com>
    
            Reviewed by Kent Tamura.
    
            [chromium] Add Notification::detachPresenter to the WebKit API.
            https://bugs.webkit.org/show_bug.cgi?id=43659
    
            * public/WebNotification.h:
            * src/WebNotification.cpp:
            (WebKit::WebNotification::detachPresenter):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@65251 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/chromium/ChangeLog b/WebKit/chromium/ChangeLog
index a68f255..6d92931 100644
--- a/WebKit/chromium/ChangeLog
+++ b/WebKit/chromium/ChangeLog
@@ -1,3 +1,14 @@
+2010-08-12  John Gregg  <johnnyg at google.com>
+
+        Reviewed by Kent Tamura.
+
+        [chromium] Add Notification::detachPresenter to the WebKit API.
+        https://bugs.webkit.org/show_bug.cgi?id=43659
+
+        * public/WebNotification.h:
+        * src/WebNotification.cpp:
+        (WebKit::WebNotification::detachPresenter):
+
 2010-08-11  Stephen White  <senorblanco at chromium.org>
 
         Reviewed by David Levin.
diff --git a/WebKit/chromium/public/WebNotification.h b/WebKit/chromium/public/WebNotification.h
index f872111..89dff7a 100644
--- a/WebKit/chromium/public/WebNotification.h
+++ b/WebKit/chromium/public/WebNotification.h
@@ -83,6 +83,9 @@ public:
 
     WEBKIT_API WebString replaceId() const;
 
+    // Called if the presenter goes out of scope before the notification does.
+    WEBKIT_API void detachPresenter();
+
     // Called to indicate the notification has been displayed.
     WEBKIT_API void dispatchDisplayEvent();
 
diff --git a/WebKit/chromium/src/WebNotification.cpp b/WebKit/chromium/src/WebNotification.cpp
index 38d91df..6aa8439 100644
--- a/WebKit/chromium/src/WebNotification.cpp
+++ b/WebKit/chromium/src/WebNotification.cpp
@@ -113,6 +113,11 @@ WebString WebNotification::replaceId() const
     return m_private->replaceId();
 }
 
+void WebNotification::detachPresenter()
+{
+    m_private->detachPresenter();
+}
+
 void WebNotification::dispatchDisplayEvent()
 {
     RefPtr<Event> event = Event::create("display", false, true);

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list