Changeset 107045 in webkit
- Timestamp:
- Feb 8, 2012, 12:05:56 AM (15 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 4 edited
-
ChangeLog (modified) (1 diff)
-
bindings/scripts/CodeGeneratorJS.pm (modified) (1 diff)
-
dom/Node.idl (modified) (1 diff)
-
html/HTMLElement.idl (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r107041 r107045 1 2012-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 1 18 2012-02-06 Kentaro Hara <haraken@chromium.org> 2 19 -
trunk/Source/WebCore/bindings/scripts/CodeGeneratorJS.pm
r107041 r107045 814 814 815 815 # 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"}; 817 817 818 818 # Custom call functions -
trunk/Source/WebCore/dom/Node.idl
r107041 r107045 24 24 CustomHeader, 25 25 JSCustomMarkFunction, 26 CustomPushEventHandlerScope,26 JSCustomPushEventHandlerScope, 27 27 JSCustomIsReachable, 28 28 JSCustomFinalize, -
trunk/Source/WebCore/html/HTMLElement.idl
r107041 r107045 23 23 interface [ 24 24 JSGenerateToNativeObject, 25 CustomPushEventHandlerScope25 JSCustomPushEventHandlerScope 26 26 ] HTMLElement : Element { 27 27 // iht.com relies on id returning the empty string when no id is present.
Note:
See TracChangeset
for help on using the changeset viewer.