Index: base/threading/platform_thread_internal_posix.h |
diff --git a/base/threading/platform_thread_internal_posix.h b/base/threading/platform_thread_internal_posix.h |
index 05a8d1e26e78bd56d4e539110aad330a4ed01b1d..df0f36a2262d0d06c554a126097116dc6be2c6a1 100644 |
--- a/base/threading/platform_thread_internal_posix.h |
+++ b/base/threading/platform_thread_internal_posix.h |
@@ -5,6 +5,7 @@ |
#ifndef BASE_THREADING_PLATFORM_THREAD_INTERNAL_POSIX_H_ |
#define BASE_THREADING_PLATFORM_THREAD_INTERNAL_POSIX_H_ |
+#include "base/base_export.h" |
#include "base/threading/platform_thread.h" |
namespace base { |
@@ -23,7 +24,7 @@ int ThreadPriorityToNiceValue(ThreadPriority priority); |
// Returns the ThreadPrioirty matching |nice_value| based on the platform- |
// specific implementation of kThreadPriorityToNiceValueMap. |
-ThreadPriority NiceValueToThreadPriority(int nice_value); |
+BASE_EXPORT ThreadPriority NiceValueToThreadPriority(int nice_value); |
// Allows platform specific tweaks to the generic POSIX solution for |
// SetCurrentThreadPriority. Returns true if the platform-specific |