Title: [139933] trunk/Source/WebCore
Revision
139933
Author
[email protected]
Date
2013-01-16 16:05:53 -0800 (Wed, 16 Jan 2013)

Log Message

Fix the warning for the exported Objective-C binding of DOMCSSSupportsRule

Patch by Benjamin Poulain <[email protected]> on 2013-01-16
Rubber-stamped by Simon Fraser.

* WebCore.exp.in: r139866 exported the Objective-C class DOMCSSSupportsRule
without #ifdefing the symbol between its feature flag.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (139932 => 139933)


--- trunk/Source/WebCore/ChangeLog	2013-01-16 23:57:50 UTC (rev 139932)
+++ trunk/Source/WebCore/ChangeLog	2013-01-17 00:05:53 UTC (rev 139933)
@@ -1,3 +1,12 @@
+2013-01-16  Benjamin Poulain  <[email protected]>
+
+        Fix the warning for the exported Objective-C binding of DOMCSSSupportsRule
+
+        Rubber-stamped by Simon Fraser.
+
+        * WebCore.exp.in: r139866 exported the Objective-C class DOMCSSSupportsRule
+        without #ifdefing the symbol between its feature flag.
+
 2013-01-16  Victor Carbune  <[email protected]>
 
         Cues not rendered when they should be

Modified: trunk/Source/WebCore/WebCore.exp.in (139932 => 139933)


--- trunk/Source/WebCore/WebCore.exp.in	2013-01-16 23:57:50 UTC (rev 139932)
+++ trunk/Source/WebCore/WebCore.exp.in	2013-01-17 00:05:53 UTC (rev 139933)
@@ -1576,7 +1576,6 @@
 .objc_class_name_DOMCSSRuleList
 .objc_class_name_DOMCSSStyleRule
 .objc_class_name_DOMCSSStyleSheet
-.objc_class_name_DOMCSSSupportsRule
 .objc_class_name_DOMCSSUnknownRule
 .objc_class_name_DOMCSSValue
 .objc_class_name_DOMCSSValueList
@@ -2252,6 +2251,10 @@
 __ZNK7WebCore15ContextMenuItem7enabledEv
 #endif // ENABLE(CONTEXT_MENUS)
 
+#if ENABLE(CSS3_CONDITIONAL_RULES)
+.objc_class_name_DOMCSSSupportsRule
+#endif // ENABLE(CSS3_CONDITIONAL_RULES)
+
 #if ENABLE(DASHBOARD_SUPPORT) || ENABLE(DRAGGABLE_REGION)
 __ZNK7WebCore8Document16annotatedRegionsEv
 #endif
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to