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

Unified Diff: cc/test/fake_ui_resource_layer_tree_host_impl.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/test/fake_ui_resource_layer_tree_host_impl.h
diff --git a/cc/test/fake_ui_resource_layer_tree_host_impl.h b/cc/test/fake_ui_resource_layer_tree_host_impl.h
index 7db2ff0cbf393a26b2cc4710ca78345be7eac2e0..963d7c10dfeadcf7f5ec6cf2c345a7ff15b1d240 100644
--- a/cc/test/fake_ui_resource_layer_tree_host_impl.h
+++ b/cc/test/fake_ui_resource_layer_tree_host_impl.h
@@ -5,7 +5,8 @@
#ifndef CC_TEST_FAKE_UI_RESOURCE_LAYER_TREE_HOST_IMPL_H_
#define CC_TEST_FAKE_UI_RESOURCE_LAYER_TREE_HOST_IMPL_H_
-#include "base/containers/hash_tables.h"
+#include <unordered_map>
+
#include "cc/test/fake_layer_tree_host_impl.h"
namespace cc {
@@ -29,7 +30,7 @@ class FakeUIResourceLayerTreeHostImpl : public FakeLayerTreeHostImpl {
bool IsUIResourceOpaque(UIResourceId uid) const override;
private:
- typedef base::hash_map<UIResourceId, LayerTreeHostImpl::UIResourceData>
+ typedef std::unordered_map<UIResourceId, LayerTreeHostImpl::UIResourceData>
UIResourceMap;
UIResourceMap fake_ui_resource_map_;
};

Powered by Google App Engine
This is Rietveld 408576698