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

Unified Diff: content/common/media/media_stream_options.h

Issue 7284037: Adding MediaStreamManager. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Changes based on review by wjia Created 9 years, 6 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: content/common/media/media_stream_options.h
===================================================================
--- content/common/media/media_stream_options.h (revision 91097)
+++ content/common/media/media_stream_options.h (working copy)
@@ -35,8 +35,9 @@
// Type of media stream.
enum MediaStreamType {
kNoService = 0,
- kAudioCapture,
- kVideoCapture
+ kAudioCapture = 1,
Leandro Graciá Gil 2011/07/01 11:31:35 Not a problem, but is there any reason of why you'
mflodman1 2011/07/01 14:07:23 It was to explicitly show the number for, kNumMedi
+ kVideoCapture = 2,
+ kNumMediaStreamTypes = 3
};
// StreamDeviceInfo describes information about a device.

Powered by Google App Engine
This is Rietveld 408576698