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

Unified Diff: third_party/WebKit/Source/modules/mediastream/MediaStreamRegistry.h

Issue 1363143003: [Oilpan] Move MediaStream{Source|Component|Descriptor} to Oilpan heap (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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: 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

Powered by Google App Engine
This is Rietveld 408576698