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

Unified Diff: cc/base/rtree.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/rolling_time_delta_history.h ('k') | cc/base/simple_enclosed_region.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/base/rtree.h
diff --git a/cc/base/rtree.h b/cc/base/rtree.h
index 31250b2e8103c27e57fdcec93353069a6b8789e9..3a19c29ac3d4545fad75b15e5b4918ccda113e50 100644
--- a/cc/base/rtree.h
+++ b/cc/base/rtree.h
@@ -10,7 +10,7 @@
#include <vector>
-#include "cc/base/cc_export.h"
+#include "cc/base/base_export.h"
#include "ui/gfx/geometry/rect.h"
namespace cc {
@@ -35,7 +35,7 @@ namespace cc {
// Beckmann, N.; Kriegel, H. P.; Schneider, R.; Seeger, B. (1990).
// "The R*-tree: an efficient and robust access method for points and
// rectangles"
-class CC_EXPORT RTree {
+class CC_BASE_EXPORT RTree {
public:
RTree();
~RTree();
@@ -135,6 +135,8 @@ class CC_EXPORT RTree {
size_t num_data_elements_;
Branch root_;
std::vector<Node> nodes_;
+
+ DISALLOW_COPY_AND_ASSIGN(RTree);
};
} // namespace cc
« no previous file with comments | « cc/base/rolling_time_delta_history.h ('k') | cc/base/simple_enclosed_region.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698