Chromium Code Reviews| Index: third_party/WebKit/Source/modules/mediastream/MediaStreamRegistry.h |
| diff --git a/third_party/WebKit/Source/modules/mediastream/MediaStreamRegistry.h b/third_party/WebKit/Source/modules/mediastream/MediaStreamRegistry.h |
| index 1ba3e25091ef9d831247584f94df48412835ffe1..22cd15cbe7cc45cc7e53bc12b218062dbaf81c0d 100644 |
| --- a/third_party/WebKit/Source/modules/mediastream/MediaStreamRegistry.h |
| +++ b/third_party/WebKit/Source/modules/mediastream/MediaStreamRegistry.h |
| @@ -27,6 +27,7 @@ |
| #include "core/html/URLRegistry.h" |
| #include "modules/ModulesExport.h" |
| +#include "platform/heap/Handle.h" |
| #include "wtf/HashMap.h" |
| #include "wtf/PassRefPtr.h" |
|
sof
2015/09/30 06:26:34
While here, let's remove this.
peria
2015/09/30 07:50:05
Done.
|
| #include "wtf/text/StringHash.h" |
| @@ -50,7 +51,7 @@ public: |
| private: |
| MediaStreamRegistry(); |
| - HashMap<String, RefPtr<MediaStreamDescriptor>> m_streamDescriptors; |
| + PersistentHeapHashMap<String, Member<MediaStreamDescriptor>> m_streamDescriptors; |
| }; |
| } // namespace blink |