⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 107045 in webkit


Ignore:
Timestamp:
Feb 8, 2012, 12:05:56 AM (15 years ago)
Author:
haraken@chromium.org
Message:

Rename [CustomPushEventHandlerScope] to [JSCustomPushEventHandlerScope]
https://bugs.webkit.org/show_bug.cgi?id=78081

Reviewed by Adam Barth.

[CustomPushEventHandlerScope] is a JSC-specific IDL attribute.
This patch renames it to [JSCustomPushEventHandlerScope]

No tests. No change in behavior.

  • bindings/scripts/CodeGeneratorJS.pm:

(GenerateHeader):

  • dom/Node.idl:
  • html/HTMLElement.idl:
Location:
trunk/Source/WebCore
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r107041 r107045  
     12012-02-08  Kentaro Hara  <haraken@chromium.org>
     2
     3        Rename [CustomPushEventHandlerScope] to [JSCustomPushEventHandlerScope]
     4        https://bugs.webkit.org/show_bug.cgi?id=78081
     5
     6        Reviewed by Adam Barth.
     7
     8        [CustomPushEventHandlerScope] is a JSC-specific IDL attribute.
     9        This patch renames it to [JSCustomPushEventHandlerScope]
     10
     11        No tests. No change in behavior.
     12
     13        * bindings/scripts/CodeGeneratorJS.pm:
     14        (GenerateHeader):
     15        * dom/Node.idl:
     16        * html/HTMLElement.idl:
     17
    1182012-02-06  Kentaro Hara  <haraken@chromium.org>
    219
  • trunk/Source/WebCore/bindings/scripts/CodeGeneratorJS.pm

    r107041 r107045  
    814814
    815815    # Custom pushEventHandlerScope function
    816     push(@headerContent, "    JSC::ScopeChainNode* pushEventHandlerScope(JSC::ExecState*, JSC::ScopeChainNode*) const;\n\n") if $dataNode->extendedAttributes->{"CustomPushEventHandlerScope"};
     816    push(@headerContent, "    JSC::ScopeChainNode* pushEventHandlerScope(JSC::ExecState*, JSC::ScopeChainNode*) const;\n\n") if $dataNode->extendedAttributes->{"JSCustomPushEventHandlerScope"};
    817817
    818818    # Custom call functions
  • trunk/Source/WebCore/dom/Node.idl

    r107041 r107045  
    2424        CustomHeader,
    2525        JSCustomMarkFunction,
    26         CustomPushEventHandlerScope,
     26        JSCustomPushEventHandlerScope,
    2727        JSCustomIsReachable,
    2828        JSCustomFinalize,
  • trunk/Source/WebCore/html/HTMLElement.idl

    r107041 r107045  
    2323    interface [
    2424        JSGenerateToNativeObject,
    25         CustomPushEventHandlerScope
     25        JSCustomPushEventHandlerScope
    2626    ] HTMLElement : Element {
    2727                 // iht.com relies on id returning the empty string when no id is present.
Note: See TracChangeset for help on using the changeset viewer.