Title: [178302] trunk/Source/WebCore
- Revision
- 178302
- Author
- akl...@apple.com
- Date
- 2015-01-12 15:42:48 -0800 (Mon, 12 Jan 2015)
Log Message
Fix build for non-iOS platforms. :|
* Modules/geolocation/Geolocation.cpp:
(WebCore::Geolocation::resume):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (178301 => 178302)
--- trunk/Source/WebCore/ChangeLog 2015-01-12 23:32:26 UTC (rev 178301)
+++ trunk/Source/WebCore/ChangeLog 2015-01-12 23:42:48 UTC (rev 178302)
@@ -1,3 +1,10 @@
+2015-01-12 Andreas Kling <akl...@apple.com>
+
+ Fix build for non-iOS platforms. :|
+
+ * Modules/geolocation/Geolocation.cpp:
+ (WebCore::Geolocation::resume):
+
2015-01-12 Carlos Alberto Lopez Perez <clo...@igalia.com>
[Freetype] Don't use non-scalable fonts.
Modified: trunk/Source/WebCore/Modules/geolocation/Geolocation.cpp (178301 => 178302)
--- trunk/Source/WebCore/Modules/geolocation/Geolocation.cpp 2015-01-12 23:32:26 UTC (rev 178301)
+++ trunk/Source/WebCore/Modules/geolocation/Geolocation.cpp 2015-01-12 23:42:48 UTC (rev 178302)
@@ -287,7 +287,9 @@
void Geolocation::resume()
{
+#if PLATFORM(IOS)
ASSERT(WebThreadIsLockedOrDisabled());
+#endif
ActiveDOMObject::resume();
if (!m_resumeTimer.isActive())
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes