* page/EventHandler.cpp:
(WebCore::EventHandler::setImmediateActionStage):
* page/EventHandler.h:
(WebCore::EventHandler::setImmediateActionStage):
Un-inline setImmediateActionStage, because it is exported to WebCore, and
exporting inline thing causes random weak symbol errors on some platforms.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@181687
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2015-03-18 Tim Horton <timothy_horton@apple.com>
+
+ Fix the build after r181660
+
+ * page/EventHandler.cpp:
+ (WebCore::EventHandler::setImmediateActionStage):
+ * page/EventHandler.h:
+ (WebCore::EventHandler::setImmediateActionStage):
+ Un-inline setImmediateActionStage, because it is exported to WebCore, and
+ exporting inline thing causes random weak symbol errors on some platforms.
+
2015-03-17 Conrad Shultz <conrad_shultz@apple.com>
Ignore some deprecation warnings
m_lastKnownMouseGlobalPosition = event.globalPosition();
}
+void EventHandler::setImmediateActionStage(ImmediateActionStage stage)
+{
+ m_immediateActionStage = stage;
+}
+
} // namespace WebCore
bool isHandlingWheelEvent() const { return m_isHandlingWheelEvent; }
- WEBCORE_EXPORT void setImmediateActionStage(ImmediateActionStage stage) { m_immediateActionStage = stage; }
+ WEBCORE_EXPORT void setImmediateActionStage(ImmediateActionStage stage);
private:
#if ENABLE(DRAG_SUPPORT)