Index: content/common/notification_registrar.h |
diff --git a/content/common/notification_registrar.h b/content/common/notification_registrar.h |
index 9d054bf33941b7676d79c65d4291eb272542cb37..f4495e52185878708c0ee60dc7ba54715f2c7d1c 100644 |
--- a/content/common/notification_registrar.h |
+++ b/content/common/notification_registrar.h |
@@ -10,6 +10,7 @@ |
#include "base/basictypes.h" |
#include "content/common/content_notification_types.h" |
+#include "content/common/content_export.h" |
darin (slow to review)
2011/09/04 15:41:04
nit: "export" before "notification"
Dirk Pranke
2011/09/07 01:46:07
Done.
|
class NotificationObserver; |
class NotificationSource; |
@@ -21,7 +22,7 @@ class NotificationSource; |
// class and use it to register your notifications instead of going through the |
// notification service directly. It will automatically unregister them for |
// you. |
-class NotificationRegistrar { |
+class CONTENT_EXPORT NotificationRegistrar { |
public: |
// This class must not be derived from (we don't have a virtual destructor so |
// it won't work). Instead, use it as a member in your class. |