Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1345)

Unified Diff: cc/base/list_container_helper.h

Issue 2748263002: Move cc::DisplayItemList and related classes into cc/paint/ (Closed)
Patch Set: Merge branch 'master' into ccpaint Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/base/list_container.h ('k') | cc/base/math_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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:
« no previous file with comments | « cc/base/list_container.h ('k') | cc/base/math_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698