Title: [134158] trunk/Source/WebCore
Revision
134158
Author
[email protected]
Date
2012-11-10 08:11:04 -0800 (Sat, 10 Nov 2012)

Log Message

[Mac] Guard WebCore PageVisibility Symbol Export
https://bugs.webkit.org/show_bug.cgi?id=101817

Patch by Joseph Pecoraro <[email protected]> on 2012-11-10
Reviewed by Andreas Kling.

Guard the export with the same ENABLE guards around its definition
and implementation.

* WebCore.exp.in:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (134157 => 134158)


--- trunk/Source/WebCore/ChangeLog	2012-11-10 15:13:18 UTC (rev 134157)
+++ trunk/Source/WebCore/ChangeLog	2012-11-10 16:11:04 UTC (rev 134158)
@@ -1,3 +1,15 @@
+2012-11-10  Joseph Pecoraro  <[email protected]>
+
+        [Mac] Guard WebCore PageVisibility Symbol Export
+        https://bugs.webkit.org/show_bug.cgi?id=101817
+
+        Reviewed by Andreas Kling.
+
+        Guard the export with the same ENABLE guards around its definition
+        and implementation.
+
+        * WebCore.exp.in:
+
 2012-11-10  Bruno de Oliveira Abinader  <[email protected]>
 
         [css] text-decoration:none no longer valid

Modified: trunk/Source/WebCore/WebCore.exp.in (134157 => 134158)


--- trunk/Source/WebCore/WebCore.exp.in	2012-11-10 15:13:18 UTC (rev 134157)
+++ trunk/Source/WebCore/WebCore.exp.in	2012-11-10 16:11:04 UTC (rev 134158)
@@ -724,7 +724,6 @@
 __ZN7WebCore4Page17willMoveOffscreenEv
 __ZN7WebCore4Page18removeSchedulePairEN3WTF10PassRefPtrINS_12SchedulePairEEE
 __ZN7WebCore4Page18setPageScaleFactorEfRKNS_8IntPointE
-__ZN7WebCore4Page18setVisibilityStateENS_19PageVisibilityStateEb
 __ZN7WebCore4Page19addLayoutMilestonesEj
 __ZN7WebCore4Page19visitedStateChangedEPNS_9PageGroupEy
 __ZN7WebCore4Page20setDeviceScaleFactorEf
@@ -2454,6 +2453,10 @@
 __ZN7WebCore5Frame26sendOrientationChangeEventEi
 #endif
 
+#if ENABLE(PAGE_VISIBILITY_API) || ENABLE(HIDDEN_PAGE_DOM_TIMER_THROTTLING)
+__ZN7WebCore4Page18setVisibilityStateENS_19PageVisibilityStateEb
+#endif
+
 #if USE(PLUGIN_HOST_PROCESS)
 __ZN3JSC13RuntimeMethod11getCallDataEPNS_6JSCellERNS_8CallDataE
 __ZN3JSC13RuntimeMethod14finishCreationERNS_12JSGlobalDataERKN3WTF6StringE
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to