summaryrefslogtreecommitdiffstats
path: root/base/threading/platform_thread.h
diff options
context:
space:
mode:
Diffstat (limited to 'base/threading/platform_thread.h')
-rw-r--r--base/threading/platform_thread.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/base/threading/platform_thread.h b/base/threading/platform_thread.h
index 230d209..4703b96 100644
--- a/base/threading/platform_thread.h
+++ b/base/threading/platform_thread.h
@@ -10,7 +10,7 @@
#define BASE_THREADING_PLATFORM_THREAD_H_
#pragma once
-#include "base/base_api.h"
+#include "base/base_export.h"
#include "base/basictypes.h"
#include "build/build_config.h"
@@ -55,11 +55,11 @@ enum ThreadPriority{
};
// A namespace for low-level thread functions.
-class BASE_API PlatformThread {
+class BASE_EXPORT PlatformThread {
public:
// Implement this interface to run code on a background thread. Your
// ThreadMain method will be called on the newly created thread.
- class BASE_API Delegate {
+ class BASE_EXPORT Delegate {
public:
virtual ~Delegate() {}
virtual void ThreadMain() = 0;