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

Unified Diff: Source/modules/mediastream/SourceInfo.h

Issue 173363002: Move mediastream module to oilpan transition types (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 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: Source/modules/mediastream/SourceInfo.h
diff --git a/Source/modules/mediastream/SourceInfo.h b/Source/modules/mediastream/SourceInfo.h
index 57349887efa01bd6e935d96241316944bc924b1c..28ec7fec30cc184b33f43c99928145d9d9a8cd27 100644
--- a/Source/modules/mediastream/SourceInfo.h
+++ b/Source/modules/mediastream/SourceInfo.h
@@ -34,22 +34,25 @@
namespace WebCore {
-class SourceInfo : public RefCounted<SourceInfo>, public ScriptWrappable {
+class SourceInfo : public RefCountedWillBeGarbageCollected<SourceInfo>, public ScriptWrappable {
sof 2014/02/20 15:30:23 RefCountedWillBeGarbageCollectedFinalized
keishi 2014/02/21 08:00:25 Done.
+ DECLARE_GC_INFO;
public:
- static PassRefPtr<SourceInfo> create(const blink::WebSourceInfo&);
+ static PassRefPtrWillBeRawPtr<SourceInfo> create(const blink::WebSourceInfo&);
String id() const;
String kind() const;
String label() const;
String facing() const;
+ void trace(Visitor*) { }
+
private:
explicit SourceInfo(const blink::WebSourceInfo&);
blink::WebSourceInfo m_webSourceInfo;
};
-typedef Vector<RefPtr<SourceInfo> > SourceInfoVector;
+typedef WillBePersistentHeapVector<RefPtrWillBeMember<SourceInfo> > SourceInfoVector;
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698