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

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

Issue 135363004: MediaStream API: Patch #1 of implementing navigator.getMediaDevices (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed year Created 6 years, 11 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/modules/mediastream/MediaDeviceInfo.h ('k') | Source/modules/mediastream/MediaDeviceInfoCallback.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/mediastream/MediaDeviceInfo.cpp
diff --git a/Source/modules/mediastream/SourceInfo.cpp b/Source/modules/mediastream/MediaDeviceInfo.cpp
similarity index 55%
copy from Source/modules/mediastream/SourceInfo.cpp
copy to Source/modules/mediastream/MediaDeviceInfo.cpp
index be8dfc2561a19fb076c8ae6180ce5c45f5e49265..ae21805fa7920d1cf272e52dfdf538952dcfc702 100644
--- a/Source/modules/mediastream/SourceInfo.cpp
+++ b/Source/modules/mediastream/MediaDeviceInfo.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google Inc. All rights reserved.
+ * Copyright (C) 2014 Google Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -24,62 +24,51 @@
*/
#include "config.h"
-#include "modules/mediastream/SourceInfo.h"
+#include "modules/mediastream/MediaDeviceInfo.h"
#include "wtf/text/WTFString.h"
namespace WebCore {
-PassRefPtr<SourceInfo> SourceInfo::create(const blink::WebSourceInfo& webSourceInfo)
+PassRefPtr<MediaDeviceInfo> MediaDeviceInfo::create(const blink::WebMediaDeviceInfo& webMediaDeviceInfo)
{
- ASSERT(!webSourceInfo.isNull());
- return adoptRef(new SourceInfo(webSourceInfo));
+ ASSERT(!webMediaDeviceInfo.isNull());
+ return adoptRef(new MediaDeviceInfo(webMediaDeviceInfo));
}
-SourceInfo::SourceInfo(const blink::WebSourceInfo& webSourceInfo)
- : m_webSourceInfo(webSourceInfo)
+MediaDeviceInfo::MediaDeviceInfo(const blink::WebMediaDeviceInfo& webMediaDeviceInfo)
+ : m_webMediaDeviceInfo(webMediaDeviceInfo)
{
- ScriptWrappable::init(this);
}
-String SourceInfo::id() const
+String MediaDeviceInfo::deviceId() const
{
- return m_webSourceInfo.id();
+ return m_webMediaDeviceInfo.deviceId();
}
-String SourceInfo::kind() const
+String MediaDeviceInfo::kind() const
{
- switch (m_webSourceInfo.kind()) {
- case blink::WebSourceInfo::SourceKindAudio:
- return "audio";
- case blink::WebSourceInfo::SourceKindVideo:
- return "video";
- case blink::WebSourceInfo::SourceKindNone:
- return "none";
+ switch (m_webMediaDeviceInfo.kind()) {
+ case blink::WebMediaDeviceInfo::MediaDeviceKindAudioInput:
+ return "audioinput";
+ case blink::WebMediaDeviceInfo::MediaDeviceKindAudioOutput:
+ return "audiooutput";
+ case blink::WebMediaDeviceInfo::MediaDeviceKindVideoInput:
+ return "videoinput";
}
ASSERT_NOT_REACHED();
return String();
}
-String SourceInfo::label() const
+String MediaDeviceInfo::label() const
{
- return m_webSourceInfo.label();
+ return m_webMediaDeviceInfo.label();
}
-String SourceInfo::facing() const
+String MediaDeviceInfo::groupId() const
{
- switch (m_webSourceInfo.facing()) {
- case blink::WebSourceInfo::VideoFacingModeNone:
- return String();
- case blink::WebSourceInfo::VideoFacingModeUser:
- return "user";
- case blink::WebSourceInfo::VideoFacingModeEnvironment:
- return "environment";
- }
-
- ASSERT_NOT_REACHED();
- return String();
+ return m_webMediaDeviceInfo.groupId();
}
} // namespace WebCore
« no previous file with comments | « Source/modules/mediastream/MediaDeviceInfo.h ('k') | Source/modules/mediastream/MediaDeviceInfoCallback.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698