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

Unified Diff: cc/layer_iterator.h

Issue 11365025: Make cc a component (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 1 month 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/layer_impl.h ('k') | cc/layer_iterator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/layer_iterator.h
diff --git a/cc/layer_iterator.h b/cc/layer_iterator.h
index eeaafb55aa4d8951fa3fd17ebeb72abdea4cd88e..84814fc1794473d66e6f8eee269d7a427f9ee26d 100644
--- a/cc/layer_iterator.h
+++ b/cc/layer_iterator.h
@@ -5,9 +5,9 @@
#ifndef CCLayerIterator_h
#define CCLayerIterator_h
-#include "cc/layer_tree_host_common.h"
-
#include "base/memory/ref_counted.h"
+#include "cc/cc_export.h"
+#include "cc/layer_tree_host_common.h"
namespace cc {
@@ -168,9 +168,9 @@ private:
};
// Orderings for iterating over the RenderSurfaceImpl-Layer tree.
-struct LayerIteratorActions {
+struct CC_EXPORT LayerIteratorActions {
// Walks layers sorted by z-order from back to front.
- class BackToFront {
+ class CC_EXPORT BackToFront {
public:
template <typename LayerType, typename LayerList, typename RenderSurfaceType, typename ActionType>
void begin(LayerIterator<LayerType, LayerList, RenderSurfaceType, ActionType>&);
@@ -186,7 +186,7 @@ struct LayerIteratorActions {
};
// Walks layers sorted by z-order from front to back
- class FrontToBack {
+ class CC_EXPORT FrontToBack {
public:
template <typename LayerType, typename LayerList, typename RenderSurfaceType, typename ActionType>
void begin(LayerIterator<LayerType, LayerList, RenderSurfaceType, ActionType>&);
« no previous file with comments | « cc/layer_impl.h ('k') | cc/layer_iterator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698