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

Unified Diff: public/platform/WebMediaDeviceInfo.h

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/web/web.gypi ('k') | public/web/WebMediaDevicesRequest.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/platform/WebMediaDeviceInfo.h
diff --git a/public/platform/WebSourceInfo.h b/public/platform/WebMediaDeviceInfo.h
similarity index 63%
copy from public/platform/WebSourceInfo.h
copy to public/platform/WebMediaDeviceInfo.h
index 190b1e62d20486ebff6fdfb71b482003f926361f..6406f17aa5e4439931394a5a8db28a9df10ca326 100644
--- a/public/platform/WebSourceInfo.h
+++ b/public/platform/WebMediaDeviceInfo.h
@@ -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
@@ -23,8 +23,8 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#ifndef WebSourceInfo_h
-#define WebSourceInfo_h
+#ifndef WebMediaDeviceInfo_h
+#define WebMediaDeviceInfo_h
#include "WebCommon.h"
#include "WebNonCopyable.h"
@@ -33,47 +33,41 @@
namespace blink {
-class WebSourceInfoPrivate;
+class WebMediaDeviceInfoPrivate;
-class WebSourceInfo {
+class WebMediaDeviceInfo {
public:
- enum SourceKind {
- SourceKindNone,
- SourceKindAudio,
- SourceKindVideo
+ enum MediaDeviceKind {
+ MediaDeviceKindAudioInput,
+ MediaDeviceKindAudioOutput,
+ MediaDeviceKindVideoInput
};
- enum VideoFacingMode {
- VideoFacingModeNone,
- VideoFacingModeUser,
- VideoFacingModeEnvironment
- };
-
- WebSourceInfo() { }
- WebSourceInfo(const WebSourceInfo& other) { assign(other); }
- ~WebSourceInfo() { reset(); }
+ WebMediaDeviceInfo() { }
+ WebMediaDeviceInfo(const WebMediaDeviceInfo& other) { assign(other); }
+ ~WebMediaDeviceInfo() { reset(); }
- WebSourceInfo& operator=(const WebSourceInfo& other)
+ WebMediaDeviceInfo& operator=(const WebMediaDeviceInfo& other)
{
assign(other);
return *this;
}
- BLINK_PLATFORM_EXPORT void assign(const WebSourceInfo&);
+ BLINK_PLATFORM_EXPORT void assign(const WebMediaDeviceInfo&);
- BLINK_PLATFORM_EXPORT void initialize(const WebString& id, SourceKind, const WebString& label, VideoFacingMode);
+ BLINK_PLATFORM_EXPORT void initialize(const WebString& deviceId, MediaDeviceKind, const WebString& label, const WebString& groupId);
BLINK_PLATFORM_EXPORT void reset();
bool isNull() const { return m_private.isNull(); }
- BLINK_PLATFORM_EXPORT WebString id() const;
- BLINK_PLATFORM_EXPORT SourceKind kind() const;
+ BLINK_PLATFORM_EXPORT WebString deviceId() const;
+ BLINK_PLATFORM_EXPORT MediaDeviceKind kind() const;
BLINK_PLATFORM_EXPORT WebString label() const;
- BLINK_PLATFORM_EXPORT VideoFacingMode facing() const;
+ BLINK_PLATFORM_EXPORT WebString groupId() const;
private:
- WebPrivatePtr<WebSourceInfoPrivate> m_private;
+ WebPrivatePtr<WebMediaDeviceInfoPrivate> m_private;
};
} // namespace blink
-#endif // WebSourceInfo_h
+#endif // WebMediaDeviceInfo_h
« no previous file with comments | « Source/web/web.gypi ('k') | public/web/WebMediaDevicesRequest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698