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

Unified Diff: cc/tile_manager.h

Issue 11417111: cc: Add PictureLayerTilingSet to manage PictureLayerTiling (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix win_rel 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/tile.h ('k') | cc/tile_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/tile_manager.h
diff --git a/cc/tile_manager.h b/cc/tile_manager.h
index 8f6bf8811b1f3083bb496c46a48e0bf08cf7971a..47ad63bfb50ed6ebc34eabfe410981c776cc3897 100644
--- a/cc/tile_manager.h
+++ b/cc/tile_manager.h
@@ -17,7 +17,7 @@ class Tile;
class TileVersion;
class ResourceProvider;
-class TileManagerClient {
+class CC_EXPORT TileManagerClient {
public:
virtual void ScheduleManageTiles() = 0;
@@ -37,7 +37,7 @@ enum TileManagerBin {
// This is state that is specific to a tile that is
// managed by the TileManager.
-class ManagedTileState {
+class CC_EXPORT ManagedTileState {
public:
ManagedTileState()
: can_use_gpu_memory(false)
@@ -59,7 +59,7 @@ class ManagedTileState {
// should no longer have any memory assigned to them. Tile objects are "owned"
// by layers; they automatically register with the manager when they are
// created, and unregister from the manager when they are deleted.
-class TileManager {
+class CC_EXPORT TileManager {
public:
TileManager(TileManagerClient* client);
~TileManager();
« no previous file with comments | « cc/tile.h ('k') | cc/tile_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698