Log Message
Unreviewed. Speculative build fix for Qt.
* dom/make_names.pl: (printWrapperFactoryCppFile):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (134456 => 134457)
--- trunk/Source/WebCore/ChangeLog 2012-11-13 19:40:31 UTC (rev 134456)
+++ trunk/Source/WebCore/ChangeLog 2012-11-13 19:42:22 UTC (rev 134457)
@@ -1,3 +1,12 @@
+2012-11-13 Adam Barth <[email protected]>
+
+ Unreviewed.
+
+ Speculative build fix for Qt.
+
+ * dom/make_names.pl:
+ (printWrapperFactoryCppFile):
+
2012-11-13 Sami Kyostila <[email protected]>
Allow painting outside overflow clip in accelerated scrolling layers
Modified: trunk/Source/WebCore/dom/make_names.pl (134456 => 134457)
--- trunk/Source/WebCore/dom/make_names.pl 2012-11-13 19:40:31 UTC (rev 134456)
+++ trunk/Source/WebCore/dom/make_names.pl 2012-11-13 19:42:22 UTC (rev 134457)
@@ -1244,7 +1244,7 @@
print F <<END
}
Create$parameters{namespace}ElementWrapperFunction createWrapperFunction = map.get(element->localName().impl());
- if (createWrapperFunction) {
+ if (createWrapperFunction)
END
;
if ($wrapperFactoryType eq "JS") {
@@ -1254,6 +1254,10 @@
END
;
} elsif ($wrapperFactoryType eq "V8") {
+ print F <<END
+ {
+END
+;
if ($parameters{namespace} eq "HTML") {
print F <<END
if (createWrapperFunction == createHTMLElementWrapper)
_______________________________________________ webkit-changes mailing list [email protected] http://lists.webkit.org/mailman/listinfo/webkit-changes
