| 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..be58cbd5704cc29fbcca165da7628504f8a1b409 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,8 +30,8 @@ class FakeUIResourceLayerTreeHostImpl : public FakeLayerTreeHostImpl {
|
| bool IsUIResourceOpaque(UIResourceId uid) const override;
|
|
|
| private:
|
| - typedef base::hash_map<UIResourceId, LayerTreeHostImpl::UIResourceData>
|
| - UIResourceMap;
|
| + using UIResourceMap =
|
| + std::unordered_map<UIResourceId, LayerTreeHostImpl::UIResourceData>;
|
| UIResourceMap fake_ui_resource_map_;
|
| };
|
|
|
|
|