Title: [151269] trunk/Source/WebCore
- Revision
- 151269
- Author
- [email protected]
- Date
- 2013-06-06 06:54:14 -0700 (Thu, 06 Jun 2013)
Log Message
Remove unused HashValueForClassAndName() from JSC bindings generator
https://bugs.webkit.org/show_bug.cgi?id=117292
Reviewed by Kentaro Hara.
Remove HashValueForClassAndName() subroutine from JSC bindings generator
as it is dead code.
No new tests, code clean up.
* bindings/scripts/CodeGeneratorJS.pm:
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (151268 => 151269)
--- trunk/Source/WebCore/ChangeLog 2013-06-06 13:52:45 UTC (rev 151268)
+++ trunk/Source/WebCore/ChangeLog 2013-06-06 13:54:14 UTC (rev 151269)
@@ -1,3 +1,17 @@
+2013-06-06 Christophe Dumez <[email protected]>
+
+ Remove unused HashValueForClassAndName() from JSC bindings generator
+ https://bugs.webkit.org/show_bug.cgi?id=117292
+
+ Reviewed by Kentaro Hara.
+
+ Remove HashValueForClassAndName() subroutine from JSC bindings generator
+ as it is dead code.
+
+ No new tests, code clean up.
+
+ * bindings/scripts/CodeGeneratorJS.pm:
+
2013-06-06 Gwang Yoon Hwang <[email protected]>
Cannot set a new timer inside of timer callback in RunLoopTimerGtk & RunLoopTimerEFL
Modified: trunk/Source/WebCore/bindings/scripts/CodeGeneratorJS.pm (151268 => 151269)
--- trunk/Source/WebCore/bindings/scripts/CodeGeneratorJS.pm 2013-06-06 13:52:45 UTC (rev 151268)
+++ trunk/Source/WebCore/bindings/scripts/CodeGeneratorJS.pm 2013-06-06 13:54:14 UTC (rev 151269)
@@ -290,19 +290,6 @@
}
}
-sub HashValueForClassAndName
-{
- my $class = shift;
- my $name = shift;
-
- # SVG Filter enums live in WebCore namespace (platform/graphics/)
- if ($class =~ /^SVGFE*/ or $class =~ /^SVGComponentTransferFunctionElement$/) {
- return "WebCore::$name";
- }
-
- return "${class}::$name";
-}
-
sub hashTableAccessor
{
my $noStaticTables = shift;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes