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

Unified Diff: Source/modules/mediastream/MediaStreamTrackEvent.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
Index: Source/modules/mediastream/MediaStreamTrackEvent.h
diff --git a/Source/modules/mediastream/MediaStreamTrackEvent.h b/Source/modules/mediastream/MediaStreamTrackEvent.h
index f15952a18e1f0b44717917075b903f2a3ff845a3..7fb3932e1f5c2e187d749234515b0491925d547c 100644
--- a/Source/modules/mediastream/MediaStreamTrackEvent.h
+++ b/Source/modules/mediastream/MediaStreamTrackEvent.h
@@ -37,7 +37,7 @@ public:
virtual ~MediaStreamTrackEvent();
static PassRefPtrWillBeRawPtr<MediaStreamTrackEvent> create();
- static PassRefPtrWillBeRawPtr<MediaStreamTrackEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<MediaStreamTrack>);
+ static PassRefPtrWillBeRawPtr<MediaStreamTrackEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<MediaStreamTrack>);
MediaStreamTrack* track() const;
@@ -48,9 +48,9 @@ public:
private:
MediaStreamTrackEvent();
- MediaStreamTrackEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<MediaStreamTrack>);
+ MediaStreamTrackEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<MediaStreamTrack>);
- RefPtr<MediaStreamTrack> m_track;
+ RefPtrWillBeMember<MediaStreamTrack> m_track;
};
} // namespace WebCore
« no previous file with comments | « Source/modules/mediastream/MediaStreamTrack.idl ('k') | Source/modules/mediastream/MediaStreamTrackEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698