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

Unified Diff: cc/output/bsp_walk_action.h

Issue 1057283003: Remove parts of //cc we aren't using (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 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/output/bsp_tree.h ('k') | cc/output/compositor_frame.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/output/bsp_walk_action.h
diff --git a/cc/output/bsp_walk_action.h b/cc/output/bsp_walk_action.h
index a89d8eab36495dace23e177e3c092bd056b49908..9ffc6c724993a2d7edd960542b928e4d498f92bc 100644
--- a/cc/output/bsp_walk_action.h
+++ b/cc/output/bsp_walk_action.h
@@ -13,14 +13,14 @@
namespace cc {
-class CC_EXPORT BspWalkAction {
+class BspWalkAction {
public:
virtual void operator()(DrawPolygon* item) = 0;
};
// The BspTree class takes ownership of all the DrawPolygons returned in list_
// so the BspTree must be preserved while elements in that vector are in use.
-class CC_EXPORT BspWalkActionDrawPolygon : public BspWalkAction {
+class BspWalkActionDrawPolygon : public BspWalkAction {
public:
void operator()(DrawPolygon* item) override;
@@ -36,7 +36,7 @@ class CC_EXPORT BspWalkActionDrawPolygon : public BspWalkAction {
bool using_scissor_as_optimization_;
};
-class CC_EXPORT BspWalkActionToVector : public BspWalkAction {
+class BspWalkActionToVector : public BspWalkAction {
public:
explicit BspWalkActionToVector(std::vector<DrawPolygon*>* in_list);
void operator()(DrawPolygon* item) override;
« no previous file with comments | « cc/output/bsp_tree.h ('k') | cc/output/compositor_frame.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698