Index: cc/base/list_container_helper.h |
diff --git a/cc/base/list_container_helper.h b/cc/base/list_container_helper.h |
index d4f5ead8ac7f5c61b8c005e8b3a36dd54b7cafbf..ce98c1ec4efa41a6255316ffe923e3eee3e2f48a 100644 |
--- a/cc/base/list_container_helper.h |
+++ b/cc/base/list_container_helper.h |
@@ -10,14 +10,14 @@ |
#include <memory> |
#include "base/macros.h" |
-#include "cc/base/cc_export.h" |
+#include "cc/base/base_export.h" |
namespace cc { |
// Helper class for ListContainer non-templated logic. All methods are private, |
// and only exposed to friend classes. |
// For usage, see comments in ListContainer (list_container.h). |
-class CC_EXPORT ListContainerHelper final { |
+class CC_BASE_EXPORT ListContainerHelper final { |
private: |
template <typename T> |
friend class ListContainer; |
@@ -36,7 +36,7 @@ class CC_EXPORT ListContainerHelper final { |
// This class points to a certain position inside memory of |
// CharAllocator. It is a base class for ListContainer iterators. |
- struct CC_EXPORT PositionInCharAllocator { |
+ struct CC_BASE_EXPORT PositionInCharAllocator { |
CharAllocator* ptr_to_container; |
size_t vector_index; |
char* item_iterator; |
@@ -56,7 +56,7 @@ class CC_EXPORT ListContainerHelper final { |
// Iterator classes that can be used to access data. |
///////////////////////////////////////////////////////////////// |
- class CC_EXPORT Iterator : public PositionInCharAllocator { |
+ class CC_BASE_EXPORT Iterator : public PositionInCharAllocator { |
// This class is only defined to forward iterate through |
// CharAllocator. |
public: |
@@ -76,7 +76,7 @@ class CC_EXPORT ListContainerHelper final { |
size_t index_; |
}; |
- class CC_EXPORT ConstIterator : public PositionInCharAllocator { |
+ class CC_BASE_EXPORT ConstIterator : public PositionInCharAllocator { |
// This class is only defined to forward iterate through |
// CharAllocator. |
public: |
@@ -97,7 +97,7 @@ class CC_EXPORT ListContainerHelper final { |
size_t index_; |
}; |
- class CC_EXPORT ReverseIterator : public PositionInCharAllocator { |
+ class CC_BASE_EXPORT ReverseIterator : public PositionInCharAllocator { |
// This class is only defined to reverse iterate through |
// CharAllocator. |
public: |
@@ -117,7 +117,7 @@ class CC_EXPORT ListContainerHelper final { |
size_t index_; |
}; |
- class CC_EXPORT ConstReverseIterator : public PositionInCharAllocator { |
+ class CC_BASE_EXPORT ConstReverseIterator : public PositionInCharAllocator { |
// This class is only defined to reverse iterate through |
// CharAllocator. |
public: |