Title: [107045] trunk/Source/WebCore
Revision
107045
Author
hara...@chromium.org
Date
2012-02-08 00:05:56 -0800 (Wed, 08 Feb 2012)

Log 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:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (107044 => 107045)


--- trunk/Source/WebCore/ChangeLog	2012-02-08 08:05:05 UTC (rev 107044)
+++ trunk/Source/WebCore/ChangeLog	2012-02-08 08:05:56 UTC (rev 107045)
@@ -1,3 +1,20 @@
+2012-02-08  Kentaro Hara  <hara...@chromium.org>
+
+        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:
+
 2012-02-06  Kentaro Hara  <hara...@chromium.org>
 
         Add "JS" prefix to JSC-specific IDLs

Modified: trunk/Source/WebCore/bindings/scripts/CodeGeneratorJS.pm (107044 => 107045)


--- trunk/Source/WebCore/bindings/scripts/CodeGeneratorJS.pm	2012-02-08 08:05:05 UTC (rev 107044)
+++ trunk/Source/WebCore/bindings/scripts/CodeGeneratorJS.pm	2012-02-08 08:05:56 UTC (rev 107045)
@@ -813,7 +813,7 @@
     push(@headerContent, "    }\n\n");
 
     # Custom pushEventHandlerScope function
-    push(@headerContent, "    JSC::ScopeChainNode* pushEventHandlerScope(JSC::ExecState*, JSC::ScopeChainNode*) const;\n\n") if $dataNode->extendedAttributes->{"CustomPushEventHandlerScope"};
+    push(@headerContent, "    JSC::ScopeChainNode* pushEventHandlerScope(JSC::ExecState*, JSC::ScopeChainNode*) const;\n\n") if $dataNode->extendedAttributes->{"JSCustomPushEventHandlerScope"};
 
     # Custom call functions
     push(@headerContent, "    static JSC::CallType getCallData(JSC::JSCell*, JSC::CallData&);\n\n") if $dataNode->extendedAttributes->{"CustomCall"};

Modified: trunk/Source/WebCore/dom/Node.idl (107044 => 107045)


--- trunk/Source/WebCore/dom/Node.idl	2012-02-08 08:05:05 UTC (rev 107044)
+++ trunk/Source/WebCore/dom/Node.idl	2012-02-08 08:05:56 UTC (rev 107045)
@@ -23,7 +23,7 @@
     interface [
         CustomHeader,
         JSCustomMarkFunction,
-        CustomPushEventHandlerScope,
+        JSCustomPushEventHandlerScope,
         JSCustomIsReachable,
         JSCustomFinalize,
         JSCustomToJS,

Modified: trunk/Source/WebCore/html/HTMLElement.idl (107044 => 107045)


--- trunk/Source/WebCore/html/HTMLElement.idl	2012-02-08 08:05:05 UTC (rev 107044)
+++ trunk/Source/WebCore/html/HTMLElement.idl	2012-02-08 08:05:56 UTC (rev 107045)
@@ -22,7 +22,7 @@
 
     interface [
         JSGenerateToNativeObject,
-        CustomPushEventHandlerScope
+        JSCustomPushEventHandlerScope
     ] HTMLElement : Element {
                  // iht.com relies on id returning the empty string when no id is present. 
                  // Other browsers do this as well. So we don't convert null to JS null.
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to