Changeset 156554 in webkit
- Timestamp:
- Sep 27, 2013, 10:40:55 AM (12 years ago)
- Location:
- trunk
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r156553 r156554 1 2013-09-27 Eric Carlson <eric.carlson@apple.com> 2 3 [MediaStream API] update SourceInfo object to match spec 4 https://bugs.webkit.org/show_bug.cgi?id=121941 5 6 Reviewed by Dean Jackson. 7 8 * fast/mediastream/MediaStreamTrack-getSources-expected.txt: 9 * fast/mediastream/MediaStreamTrack-getSources.html: 10 1 11 2013-09-26 Dean Jackson <dino@apple.com> 2 12 -
trunk/LayoutTests/fast/mediastream/MediaStreamTrack-getSources-expected.txt
r155992 r156554 4 4 5 5 6 7 *** calling MediaStreamTrack.getSources() *** 6 8 PASS MediaStreamTrack.getSources(gotSources1); did not throw exception. 7 PASS gotSources1 was called. 8 PASS sources.length > 0 is true 9 PASS gotStream was called. 9 PASS callback called. 10 sources1[0].sourceId = "Mock_audio_device_ID" 11 sources1[0].label = "Mock audio device" 12 sources1[0].kind = "audio" 13 sources1[1].sourceId = "Mock_video_device_ID" 14 sources1[1].label = "Mock video device" 15 sources1[1].kind = "video" 16 17 *** calling navigator.webkitGetUserMedia() *** 18 PASS navigator.webkitGetUserMedia(constraints, callback, error) did not throw exception. 19 PASS callback called. 20 21 *** calling MediaStreamTrack.getSources() *** 10 22 PASS MediaStreamTrack.getSources(gotSources2); did not throw exception. 11 PASS gotSources2 was called. 12 PASS sources.length > 0 is true 13 PASS sources[0].id === previousId is true 14 PASS sources[0].label.length > 0 is true 23 PASS callback called. 24 PASS sources2.length == sources1.length is true 25 PASS sources2[0].sourceId === sources1[0].sourceId is true 26 PASS sources2[0].label === sources1[0].label is true 27 PASS sources2[0].kind === sources1[0].kind is true 28 PASS sources2[1].sourceId === sources1[1].sourceId is true 29 PASS sources2[1].label === sources1[1].label is true 30 PASS sources2[1].kind === sources1[1].kind is true 15 31 PASS successfullyParsed is true 16 32 -
trunk/LayoutTests/fast/mediastream/MediaStreamTrack-getSources.html
r155992 r156554 10 10 description("Tests MediaStreamTrack::getSources."); 11 11 12 var sources = null;13 var previousId;12 var sources1 = null; 13 var sources2 = null; 14 14 var timer = null; 15 15 … … 26 26 } 27 27 28 function getUserMedia( constraints,callback)28 function getUserMedia(_constraints, _callback) 29 29 { 30 30 try { 31 31 primeTimeout("Timeout waiting for webkitGetUserMedia()"); 32 navigator.webkitGetUserMedia(constraints, callback, error); 32 constraints = _constraints; 33 callback = _callback; 34 debug("<br>*** calling navigator.webkitGetUserMedia() ***"); 35 shouldNotThrow("navigator.webkitGetUserMedia(constraints, callback, error)"); 33 36 } catch (e) { 34 37 testFailed('webkitGetUserMedia threw exception :' + e); … … 37 40 } 38 41 39 function gotSources2(s )42 function gotSources2(sources) 40 43 { 41 testPassed('gotSources2 was called.'); 42 sources = s; 43 shouldBeTrue('sources.length > 0'); 44 shouldBeTrue('sources[0].id === previousId'); 45 shouldBeTrue('sources[0].label.length > 0'); 44 testPassed('callback called.'); 45 sources2 = sources; 46 shouldBeTrue('sources2.length == sources1.length'); 47 for (i = 0; i < sources2.length; ++i) { 48 shouldBeTrue("sources2[" + i + "].sourceId === sources1[" + i + "].sourceId"); 49 shouldBeTrue("sources2[" + i + "].label === sources1[" + i + "].label"); 50 shouldBeTrue("sources2[" + i + "].kind === sources1[" + i + "].kind"); 51 } 46 52 47 53 finishTest(); 48 54 } 49 55 50 function gotStream(s )56 function gotStream(stream) 51 57 { 52 testPassed('gotStream was called.'); 58 testPassed('callback called.'); 59 primeTimeout("Timeout waiting for MediaStreamTrack.getSources()"); 53 60 54 primeTimeout("Timeout waiting for MediaStreamTrack.getSources()");61 debug("<br>*** calling MediaStreamTrack.getSources() ***"); 55 62 shouldNotThrow('MediaStreamTrack.getSources(gotSources2);'); 56 63 } 57 64 58 function gotSources1(s )65 function gotSources1(sources) 59 66 { 60 testPassed('gotSources1 was called.'); 61 sources = s; 62 shouldBeTrue('sources.length > 0'); 63 previousId = sources[0].id; 67 testPassed('callback called.'); 68 sources1 = sources; 69 for (i = 0; i < sources1.length; ++i) { 70 debug("sources1[" + i + "].sourceId = \"" + sources1[i].sourceId + "\""); 71 debug("sources1[" + i + "].label = \"" + sources1[i].label + "\""); 72 debug("sources1[" + i + "].kind = \"" + sources1[i].kind + "\""); 73 } 64 74 65 75 getUserMedia({audio:true, video:true}, gotStream); … … 73 83 74 84 primeTimeout("Timeout waiting for MediaStreamTrack.getSources()"); 85 debug("<br>*** calling MediaStreamTrack.getSources() ***"); 75 86 shouldNotThrow('MediaStreamTrack.getSources(gotSources1);'); 76 87 -
trunk/Source/WebCore/ChangeLog
r156553 r156554 1 2013-09-27 Eric Carlson <eric.carlson@apple.com> 2 3 [MediaStream API] update SourceInfo object to match spec 4 https://bugs.webkit.org/show_bug.cgi?id=121941 5 6 Reviewed by Dean Jackson. 7 8 No new tests, existing test updated. 9 10 * Modules/mediastream/SourceInfo.cpp: 11 (WebCore::SourceInfo::kind): Get rid of "none". 12 * Modules/mediastream/SourceInfo.h: 13 (WebCore::SourceInfo::sourceId): Renamed from "id". 14 * Modules/mediastream/SourceInfo.idl: 15 16 * platform/mediastream/MediaStreamTrackSourcesRequestClient.h: 17 (WebCore::TrackSourceInfo::create): 18 (WebCore::TrackSourceInfo::kind): 19 (WebCore::TrackSourceInfo::TrackSourceInfo): 20 21 * platform/mock/MockMediaStreamCenter.cpp: 22 (WebCore::MockMediaStreamCenter::getMediaStreamTrackSources): "facing" isn't a part of sourceInfo. 23 Return a non-NULL ID because a source must always have one. 24 1 25 2013-09-26 Dean Jackson <dino@apple.com> 2 26 -
trunk/Source/WebCore/Modules/mediastream/SourceInfo.cpp
r155992 r156554 46 46 const AtomicString& SourceInfo::kind() const 47 47 { 48 static NeverDestroyed<AtomicString> none("none", AtomicString::ConstructFromLiteral);49 48 static NeverDestroyed<AtomicString> audioKind("audio", AtomicString::ConstructFromLiteral); 50 49 static NeverDestroyed<AtomicString> videoKind("video", AtomicString::ConstructFromLiteral); … … 55 54 case TrackSourceInfo::Video: 56 55 return videoKind; 57 case TrackSourceInfo::None:58 return none;59 }60 61 ASSERT_NOT_REACHED();62 return emptyAtom;63 }64 65 const AtomicString& SourceInfo::facing() const66 {67 static NeverDestroyed<AtomicString> userFacing("user", AtomicString::ConstructFromLiteral);68 static NeverDestroyed<AtomicString> environmentFacing("environment", AtomicString::ConstructFromLiteral);69 static NeverDestroyed<AtomicString> leftFacing("left", AtomicString::ConstructFromLiteral);70 static NeverDestroyed<AtomicString> rightFacing("right", AtomicString::ConstructFromLiteral);71 72 switch (m_trackSourceInfo->facing()) {73 case TrackSourceInfo::None:74 return emptyAtom;75 case TrackSourceInfo::User:76 return userFacing;77 case TrackSourceInfo::Environment:78 return environmentFacing;79 case TrackSourceInfo::Left:80 return leftFacing;81 case TrackSourceInfo::Right:82 return rightFacing;83 56 } 84 57 -
trunk/Source/WebCore/Modules/mediastream/SourceInfo.h
r155992 r156554 43 43 static PassRefPtr<SourceInfo> create(PassRefPtr<TrackSourceInfo>); 44 44 45 const AtomicString& id() const { return m_trackSourceInfo->id(); }45 const AtomicString& sourceId() const { return m_trackSourceInfo->id(); } 46 46 const AtomicString& label() const { return m_trackSourceInfo->label(); } 47 47 const AtomicString& kind() const; 48 const AtomicString& facing() const;49 48 50 49 private: -
trunk/Source/WebCore/Modules/mediastream/SourceInfo.idl
r155992 r156554 29 29 Conditional=MEDIA_STREAM, 30 30 ] interface SourceInfo { 31 readonly attribute DOMString id;31 readonly attribute DOMString sourceId; 32 32 readonly attribute DOMString kind; 33 33 readonly attribute DOMString label; 34 readonly attribute DOMString facing;35 34 }; -
trunk/Source/WebCore/platform/mediastream/MediaStreamTrackSourcesRequestClient.h
r155992 r156554 37 37 class TrackSourceInfo : public RefCounted<TrackSourceInfo> { 38 38 public: 39 enum SourceKind { NoSource, Audio, Video }; 40 enum VideoFacingMode { None, User, Environment, Left, Right }; 39 enum SourceKind { Audio, Video }; 41 40 42 static PassRefPtr<TrackSourceInfo> create(const AtomicString& id, SourceKind kind, const AtomicString& label , VideoFacingMode facing)41 static PassRefPtr<TrackSourceInfo> create(const AtomicString& id, SourceKind kind, const AtomicString& label) 43 42 { 44 return adoptRef(new TrackSourceInfo(id, kind, label , facing));43 return adoptRef(new TrackSourceInfo(id, kind, label)); 45 44 } 46 45 … … 48 47 const AtomicString& label() const { return m_label; } 49 48 SourceKind kind() const { return m_kind; } 50 VideoFacingMode facing() const { return m_facing; }51 49 52 50 private: 53 TrackSourceInfo(const AtomicString& id, SourceKind kind, const AtomicString& label , VideoFacingMode facing)51 TrackSourceInfo(const AtomicString& id, SourceKind kind, const AtomicString& label) 54 52 : m_id(id) 55 53 , m_kind(kind) 56 54 , m_label(label) 57 , m_facing(facing)58 55 { 59 56 } … … 62 59 SourceKind m_kind; 63 60 AtomicString m_label; 64 VideoFacingMode m_facing;65 61 }; 66 62 -
trunk/Source/WebCore/platform/mock/MockMediaStreamCenter.cpp
r156522 r156554 156 156 Vector<RefPtr<TrackSourceInfo>> sources(2); 157 157 158 sources[0] = TrackSourceInfo::create( emptyString(), TrackSourceInfo::Audio, "Mock audio device", TrackSourceInfo::None);159 sources[1] = TrackSourceInfo::create( emptyString(), TrackSourceInfo::Video, "Mock video device", TrackSourceInfo::Environment);158 sources[0] = TrackSourceInfo::create("Mock_audio_device_ID", TrackSourceInfo::Audio, "Mock audio device"); 159 sources[1] = TrackSourceInfo::create("Mock_video_device_ID", TrackSourceInfo::Video, "Mock video device"); 160 160 161 161 requestClient->didCompleteRequest(sources);
Note:
See TracChangeset
for help on using the changeset viewer.