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

Unified Diff: cc/resources/tile_manager.h

Issue 251003002: cc: prevent TileManager raster/eviction tile iterators copy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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 | « no previous file | cc/resources/tile_manager_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/resources/tile_manager.h
diff --git a/cc/resources/tile_manager.h b/cc/resources/tile_manager.h
index 6c71152b2cda7c577d580d032ea1df9a0f9f3b6f..7775e8b6695765ce651a5156f4c9ae8772de1959 100644
--- a/cc/resources/tile_manager.h
+++ b/cc/resources/tile_manager.h
@@ -102,6 +102,8 @@ class CC_EXPORT TileManager : public RasterizerClient,
std::vector<PairedPictureLayerIterator*> iterator_heap_;
TreePriority tree_priority_;
RasterOrderComparator comparator_;
+
+ DISALLOW_COPY_AND_ASSIGN(RasterTileIterator);
};
struct CC_EXPORT EvictionTileIterator {
@@ -146,6 +148,8 @@ class CC_EXPORT TileManager : public RasterizerClient,
std::vector<PairedPictureLayerIterator*> iterator_heap_;
TreePriority tree_priority_;
EvictionOrderComparator comparator_;
+
+ DISALLOW_COPY_AND_ASSIGN(EvictionTileIterator);
};
static scoped_ptr<TileManager> Create(
« no previous file with comments | « no previous file | cc/resources/tile_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698