| Index: sky/engine/tonic/dart_gc_context.h
|
| diff --git a/sky/engine/tonic/dart_gc_context.h b/sky/engine/tonic/dart_gc_context.h
|
| index 4fc9e18d666ae5562fb601ecada980b32c39cbdc..ad1f266220a90dbfa29abafd982e863782b1b8c9 100644
|
| --- a/sky/engine/tonic/dart_gc_context.h
|
| +++ b/sky/engine/tonic/dart_gc_context.h
|
| @@ -5,9 +5,10 @@
|
| #ifndef SKY_ENGINE_TONIC_DART_GC_CONTEXT_H_
|
| #define SKY_ENGINE_TONIC_DART_GC_CONTEXT_H_
|
|
|
| +#include <unordered_map>
|
| +
|
| #include "base/macros.h"
|
| #include "dart/runtime/include/dart_api.h"
|
| -#include "sky/engine/wtf/HashMap.h"
|
|
|
| namespace blink {
|
|
|
| @@ -21,7 +22,7 @@ class DartGCContext {
|
|
|
| private:
|
| Dart_WeakReferenceSetBuilder builder_;
|
| - HashMap<const void*, Dart_WeakReferenceSet> references_;
|
| + std::unordered_map<const void*, Dart_WeakReferenceSet> references_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(DartGCContext);
|
| };
|
|
|