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

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

Issue 173363002: Move mediastream module to oilpan transition types (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 6 years, 7 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
« no previous file with comments | « Source/bindings/v8/V8Binding.h ('k') | Source/modules/mediastream/MediaDeviceInfo.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/mediastream/MediaDeviceInfo.h
diff --git a/Source/modules/mediastream/MediaDeviceInfo.h b/Source/modules/mediastream/MediaDeviceInfo.h
index 36546208886c6071e8369def3b46bc0ab96a6240..64903434136d161f4b962287d76d9d29bdb3e9ac 100644
--- a/Source/modules/mediastream/MediaDeviceInfo.h
+++ b/Source/modules/mediastream/MediaDeviceInfo.h
@@ -26,6 +26,7 @@
#ifndef MediaDeviceInfo_h
#define MediaDeviceInfo_h
+#include "platform/heap/Handle.h"
#include "public/platform/WebMediaDeviceInfo.h"
#include "wtf/PassRefPtr.h"
#include "wtf/RefCounted.h"
@@ -33,22 +34,24 @@
namespace WebCore {
-class MediaDeviceInfo : public RefCounted<MediaDeviceInfo> {
+class MediaDeviceInfo FINAL : public RefCountedWillBeGarbageCollectedFinalized<MediaDeviceInfo> {
public:
- static PassRefPtr<MediaDeviceInfo> create(const blink::WebMediaDeviceInfo&);
+ static PassRefPtrWillBeRawPtr<MediaDeviceInfo> create(const blink::WebMediaDeviceInfo&);
String deviceId() const;
String kind() const;
String label() const;
String groupId() const;
+ void trace(Visitor*) { }
+
private:
explicit MediaDeviceInfo(const blink::WebMediaDeviceInfo&);
blink::WebMediaDeviceInfo m_webMediaDeviceInfo;
};
-typedef Vector<RefPtr<MediaDeviceInfo> > MediaDeviceInfoVector;
+typedef WillBeHeapVector<RefPtrWillBeMember<MediaDeviceInfo> > MediaDeviceInfoVector;
} // namespace WebCore
« no previous file with comments | « Source/bindings/v8/V8Binding.h ('k') | Source/modules/mediastream/MediaDeviceInfo.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698