Title: [180700] trunk/Source/WebCore
Revision
180700
Author
o...@webkit.org
Date
2015-02-26 14:22:55 -0800 (Thu, 26 Feb 2015)

Log Message

Fix the !ENABLE(GEOLOCATION) build after r180533
https://bugs.webkit.org/show_bug.cgi?id=142053

Reviewed by Chris Dumez.

* Modules/geolocation/GeoNotifier.cpp:
* Modules/geolocation/GeoNotifier.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (180699 => 180700)


--- trunk/Source/WebCore/ChangeLog	2015-02-26 22:21:18 UTC (rev 180699)
+++ trunk/Source/WebCore/ChangeLog	2015-02-26 22:22:55 UTC (rev 180700)
@@ -1,3 +1,13 @@
+2015-02-26  Csaba Osztrogonác  <o...@webkit.org>
+
+        Fix the !ENABLE(GEOLOCATION) build after r180533
+        https://bugs.webkit.org/show_bug.cgi?id=142053
+
+        Reviewed by Chris Dumez.
+
+        * Modules/geolocation/GeoNotifier.cpp:
+        * Modules/geolocation/GeoNotifier.h:
+
 2015-02-26  Dean Jackson  <d...@apple.com>
 
         [iOS Media] incorrect front padding on time values

Modified: trunk/Source/WebCore/Modules/geolocation/GeoNotifier.cpp (180699 => 180700)


--- trunk/Source/WebCore/Modules/geolocation/GeoNotifier.cpp	2015-02-26 22:21:18 UTC (rev 180699)
+++ trunk/Source/WebCore/Modules/geolocation/GeoNotifier.cpp	2015-02-26 22:22:55 UTC (rev 180700)
@@ -28,6 +28,8 @@
 #include "config.h"
 #include "GeoNotifier.h"
 
+#if ENABLE(GEOLOCATION)
+
 #include "Geolocation.h"
 
 namespace WebCore {
@@ -131,3 +133,5 @@
 }
 
 } // namespace WebCore
+
+#endif // ENABLE(GEOLOCATION)

Modified: trunk/Source/WebCore/Modules/geolocation/GeoNotifier.h (180699 => 180700)


--- trunk/Source/WebCore/Modules/geolocation/GeoNotifier.h	2015-02-26 22:21:18 UTC (rev 180699)
+++ trunk/Source/WebCore/Modules/geolocation/GeoNotifier.h	2015-02-26 22:22:55 UTC (rev 180700)
@@ -27,6 +27,8 @@
 #ifndef GeoNotifier_h
 #define GeoNotifier_h
 
+#if ENABLE(GEOLOCATION)
+
 #include "Timer.h"
 #include <wtf/Forward.h>
 #include <wtf/RefCounted.h>
@@ -76,4 +78,6 @@
 
 } // namespace WebCore
 
+#endif // ENABLE(GEOLOCATION)
+
 #endif // GeoNotifier_h
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to