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

Unified Diff: cc/tiles/tile_manager.h

Issue 1587283002: Switch cc to std::unordered_*. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@unordered-map
Patch Set: Created 4 years, 11 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
Index: cc/tiles/tile_manager.h
diff --git a/cc/tiles/tile_manager.h b/cc/tiles/tile_manager.h
index 00f22e3af485787d49ab14bba7016aae11f4f819..cf18d28ccffb9597c27ab8a52fc6fedbe32ce86d 100644
--- a/cc/tiles/tile_manager.h
+++ b/cc/tiles/tile_manager.h
@@ -9,10 +9,10 @@
#include <stdint.h>
#include <set>
+#include <unordered_map>
#include <utility>
#include <vector>
-#include "base/containers/hash_tables.h"
#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "base/values.h"
@@ -292,7 +292,7 @@ class CC_EXPORT TileManager {
size_t scheduled_raster_task_limit_;
const bool use_partial_raster_;
- typedef base::hash_map<Tile::Id, Tile*> TileMap;
+ typedef std::unordered_map<Tile::Id, Tile*> TileMap;
TileMap tiles_;
bool all_tiles_that_need_to_be_rasterized_are_scheduled_;

Powered by Google App Engine
This is Rietveld 408576698