Changeset 106640 in webkit


Ignore:
Timestamp:
Feb 3, 2012 2:01:12 AM (12 years ago)
Author:
haraken@chromium.org
Message:

Remove [NoCPPCustom] IDL
https://bugs.webkit.org/show_bug.cgi?id=77704

Reviewed by Adam Barth.

This patch removes [NoCPPCustom], by replacing [Custom, NoCPPCustom]
in HTMLDocument.idl with [JSCCustom, V8Custom].

No tests. No change in behavior.

  • bindings/scripts/CodeGeneratorCPP.pm:

(ShouldSkipType):

  • html/HTMLDocument.idl:
Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r106639 r106640  
     12012-02-03  Kentaro Hara  <haraken@chromium.org>
     2
     3        Remove [NoCPPCustom] IDL
     4        https://bugs.webkit.org/show_bug.cgi?id=77704
     5
     6        Reviewed by Adam Barth.
     7
     8        This patch removes [NoCPPCustom], by replacing [Custom, NoCPPCustom]
     9        in HTMLDocument.idl with [JSCCustom, V8Custom].
     10
     11        No tests. No change in behavior.
     12
     13        * bindings/scripts/CodeGeneratorCPP.pm:
     14        (ShouldSkipType):
     15        * html/HTMLDocument.idl:
     16
    1172012-02-03  Kentaro Hara  <haraken@chromium.org>
    218
  • trunk/Source/WebCore/bindings/scripts/CodeGeneratorCPP.pm

    r106091 r106640  
    192192    my $typeInfo = shift;
    193193
    194     return 1 if $typeInfo->signature->extendedAttributes->{"Custom"}
    195              and !$typeInfo->signature->extendedAttributes->{"NoCPPCustom"};
     194    return 1 if $typeInfo->signature->extendedAttributes->{"Custom"};
    196195
    197196    return 1 if $typeInfo->signature->extendedAttributes->{"CustomArgumentHandling"}
  • trunk/Source/WebCore/html/HTMLDocument.idl

    r106534 r106640  
    2424        HasOverridingNameGetter
    2525    ] HTMLDocument : Document {
    26         [Custom, NoCPPCustom] void open();
     26        [JSCCustom, V8Custom] void open();
    2727        void close();
    2828        [Custom] void write(in [Optional=CallWithDefaultValue] DOMString text);
Note: See TracChangeset for help on using the changeset viewer.