Title: [109875] trunk/Source/WebCore
- Revision
- 109875
- Author
- [email protected]
- Date
- 2012-03-06 01:07:47 -0800 (Tue, 06 Mar 2012)
Log Message
Attempt to fix the GTK minimal build
https://bugs.webkit.org/show_bug.cgi?id=80390
Reviewed by Csaba Osztrogonác.
Add some missing ifdefs.
* Modules/geolocation/NavigatorGeolocation.cpp:
* Modules/geolocation/NavigatorGeolocation.h:
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (109874 => 109875)
--- trunk/Source/WebCore/ChangeLog 2012-03-06 09:06:35 UTC (rev 109874)
+++ trunk/Source/WebCore/ChangeLog 2012-03-06 09:07:47 UTC (rev 109875)
@@ -1,3 +1,15 @@
+2012-03-06 Adam Barth <[email protected]>
+
+ Attempt to fix the GTK minimal build
+ https://bugs.webkit.org/show_bug.cgi?id=80390
+
+ Reviewed by Csaba Osztrogonác.
+
+ Add some missing ifdefs.
+
+ * Modules/geolocation/NavigatorGeolocation.cpp:
+ * Modules/geolocation/NavigatorGeolocation.h:
+
2012-03-05 Pavel Podivilov <[email protected]>
Web Inspector: stop using RawSourceCode in BreakpointManager.
Modified: trunk/Source/WebCore/Modules/geolocation/NavigatorGeolocation.cpp (109874 => 109875)
--- trunk/Source/WebCore/Modules/geolocation/NavigatorGeolocation.cpp 2012-03-06 09:06:35 UTC (rev 109874)
+++ trunk/Source/WebCore/Modules/geolocation/NavigatorGeolocation.cpp 2012-03-06 09:07:47 UTC (rev 109875)
@@ -21,6 +21,9 @@
*/
#include "config.h"
+
+#if ENABLE(GEOLOCATION)
+
#include "NavigatorGeolocation.h"
#include "Document.h"
@@ -63,3 +66,5 @@
}
} // namespace WebCore
+
+#endif // ENABLE(GEOLOCATION)
Modified: trunk/Source/WebCore/Modules/geolocation/NavigatorGeolocation.h (109874 => 109875)
--- trunk/Source/WebCore/Modules/geolocation/NavigatorGeolocation.h 2012-03-06 09:06:35 UTC (rev 109874)
+++ trunk/Source/WebCore/Modules/geolocation/NavigatorGeolocation.h 2012-03-06 09:07:47 UTC (rev 109875)
@@ -20,6 +20,8 @@
#ifndef NavigatorGeolocation_h
#define NavigatorGeolocation_h
+#if ENABLE(GEOLOCATION)
+
#include "DOMWindowProperty.h"
#include "Supplementable.h"
@@ -45,4 +47,6 @@
} // namespace WebCore
+#endif // ENABLE(GEOLOCATION)
+
#endif // NavigatorGeolocation_h
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes