Title: [164780] trunk/Source/WebCore
Revision
164780
Author
[email protected]
Date
2014-02-27 00:42:12 -0800 (Thu, 27 Feb 2014)

Log Message

Unreviewed. Fixing the GTK build fix after r164757.

* platform/network/NetworkStateNotifier.cpp: r164757 introduced a layering violation by including
the Settings.h header. The use of that class is guarded by PLATFORM(IOS), so the header inclusion
should be guarded as well.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (164779 => 164780)


--- trunk/Source/WebCore/ChangeLog	2014-02-27 07:36:04 UTC (rev 164779)
+++ trunk/Source/WebCore/ChangeLog	2014-02-27 08:42:12 UTC (rev 164780)
@@ -1,3 +1,11 @@
+2014-02-27  Zan Dobersek  <[email protected]>
+
+        Unreviewed. Fixing the GTK build fix after r164757.
+
+        * platform/network/NetworkStateNotifier.cpp: r164757 introduced a layering violation by including
+        the Settings.h header. The use of that class is guarded by PLATFORM(IOS), so the header inclusion
+        should be guarded as well.
+
 2014-02-26  Ryosuke Niwa  <[email protected]>
 
         Extract named items caches in HTMLCollection as a class

Modified: trunk/Source/WebCore/platform/network/NetworkStateNotifier.cpp (164779 => 164780)


--- trunk/Source/WebCore/platform/network/NetworkStateNotifier.cpp	2014-02-27 07:36:04 UTC (rev 164779)
+++ trunk/Source/WebCore/platform/network/NetworkStateNotifier.cpp	2014-02-27 08:42:12 UTC (rev 164780)
@@ -26,7 +26,10 @@
 #include "config.h"
 #include "NetworkStateNotifier.h"
 
+#if PLATFORM(IOS)
 #include "Settings.h"
+#endif
+
 #include <mutex>
 #include <wtf/Assertions.h>
 #include <wtf/StdLibExtras.h>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to