Changeset 64981 in webkit


Ignore:
Timestamp:
Aug 9, 2010 7:59:57 AM (14 years ago)
Author:
loislo@chromium.org
Message:

2010-08-09 Ilya Tikhonovsky <loislo@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:
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r64980 r64981  
     12010-08-09  Ilya Tikhonovsky  <loislo@chromium.org>
     2
     3        Reviewed by Yury Semikhatsky.
     4
     5        Web Inspector: remove unnecessary did* methods from RemoteInspectorFrontend.
     6        https://bugs.webkit.org/show_bug.cgi?id=43721
     7
     8        * inspector/CodeGeneratorInspector.pm:
     9
    1102010-08-09  Andreas Kling  <andreas.kling@nokia.com>
    211
  • trunk/WebCore/inspector/CodeGeneratorInspector.pm

    r64846 r64981  
    238238    my $function = shift;
    239239
     240    my $notify = $function->signature->extendedAttributes->{"notify"};
     241    my $async = $function->signature->extendedAttributes->{"async"};
     242    return if !$async && !$notify;
    240243    my $functionName;
    241     my $notify = $function->signature->extendedAttributes->{"notify"};
    242244    if ($notify) {
    243245        $functionName = $function->signature->name;
Note: See TracChangeset for help on using the changeset viewer.