Index: content/browser/browser_thread.h |
diff --git a/content/browser/browser_thread.h b/content/browser/browser_thread.h |
index 3c47fc0cfa609424653a48bf06dc59a2644246c9..5269b406021a6be377b583615f6200dba9a75223 100644 |
--- a/content/browser/browser_thread.h |
+++ b/content/browser/browser_thread.h |
@@ -15,6 +15,8 @@ |
#include "base/logging.h" |
#endif // UNIT_TEST |
+#include "content/common/content_export.h" |
darin (slow to review)
2011/09/04 15:41:04
move up to main block of includes. it is normal f
Dirk Pranke
2011/09/07 01:46:07
Done.
|
+ |
namespace base { |
class MessageLoopProxy; |
} |
@@ -39,7 +41,7 @@ class MessageLoopProxy; |
// task is posted to is guaranteed to outlive the current thread, then no locks |
// are used. You should never need to cache pointers to MessageLoops, since |
// they're not thread safe. |
-class BrowserThread : public base::Thread { |
+class CONTENT_EXPORT BrowserThread : public base::Thread { |
public: |
// An enumeration of the well-known threads. |
// NOTE: threads must be listed in the order of their life-time, with each |