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

loislo at chromium.org loislo at chromium.org
Wed Dec 22 11:50:17 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 4c18c5fb5413184b28d07a9e873785712e917abf
Author: loislo at chromium.org <loislo at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Aug 9 14:59:57 2010 +0000

    2010-08-09  Ilya Tikhonovsky  <loislo at chromium.org>
    
            Reviewed by Yury Semikhatsky.
    
            Web Inspector: remove unnecessary did* methods from RemoteInspectorFrontend.
            https://bugs.webkit.org/show_bug.cgi?id=43721
    
            * inspector/CodeGeneratorInspector.pm:
    
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@64981 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 2102f04..0a0b7cd 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,12 @@
+2010-08-09  Ilya Tikhonovsky  <loislo at chromium.org>
+
+        Reviewed by Yury Semikhatsky.
+
+        Web Inspector: remove unnecessary did* methods from RemoteInspectorFrontend.
+        https://bugs.webkit.org/show_bug.cgi?id=43721
+
+        * inspector/CodeGeneratorInspector.pm:
+
 2010-08-09  Andreas Kling  <andreas.kling at nokia.com>
 
         Reviewed by Antonio Gomes.
diff --git a/WebCore/inspector/CodeGeneratorInspector.pm b/WebCore/inspector/CodeGeneratorInspector.pm
index 46879ab..cd3046d 100644
--- a/WebCore/inspector/CodeGeneratorInspector.pm
+++ b/WebCore/inspector/CodeGeneratorInspector.pm
@@ -237,8 +237,10 @@ sub generateFrontendFunction
 {
     my $function = shift;
 
-    my $functionName;
     my $notify = $function->signature->extendedAttributes->{"notify"};
+    my $async = $function->signature->extendedAttributes->{"async"};
+    return if !$async && !$notify;
+    my $functionName;
     if ($notify) {
         $functionName = $function->signature->name;
     } else {

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list