summaryrefslogtreecommitdiffstats
path: root/base/synchronization/cancellation_flag.h
diff options
context:
space:
mode:
Diffstat (limited to 'base/synchronization/cancellation_flag.h')
-rw-r--r--base/synchronization/cancellation_flag.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/base/synchronization/cancellation_flag.h b/base/synchronization/cancellation_flag.h
index 5738929..7734b34 100644
--- a/base/synchronization/cancellation_flag.h
+++ b/base/synchronization/cancellation_flag.h
@@ -6,7 +6,7 @@
#define BASE_SYNCHRONIZATION_CANCELLATION_FLAG_H_
#pragma once
-#include "base/base_api.h"
+#include "base/base_export.h"
#include "base/atomicops.h"
#include "base/threading/platform_thread.h"
@@ -17,7 +17,7 @@ namespace base {
// is thread-safe.
//
// This class IS NOT intended for synchronization between threads.
-class BASE_API CancellationFlag {
+class BASE_EXPORT CancellationFlag {
public:
CancellationFlag() : flag_(false) {
#if !defined(NDEBUG)