| Index: cc/resources/layer_tiling_data.h
|
| diff --git a/cc/resources/layer_tiling_data.h b/cc/resources/layer_tiling_data.h
|
| index 51565eba3b2b05bbc3ef120ef6d333077d2e8330..c5c9a74587161f372c0b512d6bbcfba06b657a47 100644
|
| --- a/cc/resources/layer_tiling_data.h
|
| +++ b/cc/resources/layer_tiling_data.h
|
| @@ -9,10 +9,10 @@
|
|
|
| #include "base/basictypes.h"
|
| #include "base/containers/hash_tables.h"
|
| +#include "base/containers/scoped_ptr_hash_map.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "cc/base/cc_export.h"
|
| #include "cc/base/region.h"
|
| -#include "cc/base/scoped_ptr_hash_map.h"
|
| #include "cc/base/tiling_data.h"
|
| #include "ui/gfx/rect.h"
|
|
|
| @@ -72,7 +72,7 @@ class CC_EXPORT LayerTilingData {
|
| DISALLOW_COPY_AND_ASSIGN(Tile);
|
| };
|
| typedef std::pair<int, int> TileMapKey;
|
| - typedef ScopedPtrHashMap<TileMapKey, Tile> TileMap;
|
| + typedef base::ScopedPtrHashMap<TileMapKey, Tile> TileMap;
|
|
|
| void AddTile(scoped_ptr<Tile> tile, int i, int j);
|
| scoped_ptr<Tile> TakeTile(int i, int j);
|
|
|