Index: Source/platform/PlatformEvent.h |
diff --git a/Source/platform/PlatformEvent.h b/Source/platform/PlatformEvent.h |
index 6fb915aa81e754ea93a99b25e3ca8d738879ad0e..350e129a62f811a21426fbca74cd8bc55dd26f5f 100644 |
--- a/Source/platform/PlatformEvent.h |
+++ b/Source/platform/PlatformEvent.h |
@@ -30,7 +30,7 @@ |
namespace WebCore { |
-class PlatformEvent { |
+class PLATFORM_EXPORT PlatformEvent { |
public: |
enum Type { |
NoType = 0, |
@@ -130,9 +130,7 @@ protected: |
// Explicit protected destructor so that people don't accidentally |
// delete a PlatformEvent. |
- ~PlatformEvent() |
- { |
- } |
+ ~PlatformEvent(); |
jamesr
2013/10/08 22:05:06
why do you need to make the destructor out-of-line
|
unsigned m_type; |
unsigned m_modifiers; |