| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 | 34 |
| 35 class MediaStreamComponent; | 35 class MediaStreamComponent; |
| 36 class MediaStreamTrack; | 36 class MediaStreamTrack; |
| 37 class WebAudioSourceProvider; | 37 class WebAudioSourceProvider; |
| 38 class WebMediaStream; | 38 class WebMediaStream; |
| 39 class WebMediaStreamSource; | 39 class WebMediaStreamSource; |
| 40 class WebString; | 40 class WebString; |
| 41 | 41 |
| 42 class WebMediaStreamTrack { | 42 class WebMediaStreamTrack { |
| 43 public: | 43 public: |
| 44 enum class FacingMode { None, User, Environment, Left, Right }; |
| 45 |
| 44 struct Settings { | 46 struct Settings { |
| 45 bool hasFrameRate() { return frameRate >= 0.0; } | 47 bool hasFrameRate() { return frameRate >= 0.0; } |
| 46 bool hasWidth() { return width >= 0; } | 48 bool hasWidth() { return width >= 0; } |
| 47 bool hasHeight() { return height >= 0; } | 49 bool hasHeight() { return height >= 0; } |
| 50 bool hasFacingMode() { return facingMode != FacingMode::None; } |
| 48 // The variables are read from | 51 // The variables are read from |
| 49 // MediaStreamTrack::GetSettings only. | 52 // MediaStreamTrack::GetSettings only. |
| 50 double frameRate = -1.0; | 53 double frameRate = -1.0; |
| 51 long width = -1; | 54 long width = -1; |
| 52 long height = -1; | 55 long height = -1; |
| 53 WebString deviceId; | 56 WebString deviceId; |
| 57 FacingMode facingMode = FacingMode::None; |
| 54 }; | 58 }; |
| 55 | 59 |
| 56 class TrackData { | 60 class TrackData { |
| 57 public: | 61 public: |
| 58 TrackData() {} | 62 TrackData() {} |
| 59 virtual ~TrackData() {} | 63 virtual ~TrackData() {} |
| 60 virtual void getSettings(Settings&) = 0; | 64 virtual void getSettings(Settings&) = 0; |
| 61 }; | 65 }; |
| 62 | 66 |
| 63 enum class ContentHintType { | 67 enum class ContentHintType { |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 BLINK_PLATFORM_EXPORT operator MediaStreamComponent*() const; | 115 BLINK_PLATFORM_EXPORT operator MediaStreamComponent*() const; |
| 112 #endif | 116 #endif |
| 113 | 117 |
| 114 private: | 118 private: |
| 115 WebPrivatePtr<MediaStreamComponent> m_private; | 119 WebPrivatePtr<MediaStreamComponent> m_private; |
| 116 }; | 120 }; |
| 117 | 121 |
| 118 } // namespace blink | 122 } // namespace blink |
| 119 | 123 |
| 120 #endif // WebMediaStreamTrack_h | 124 #endif // WebMediaStreamTrack_h |
| OLD | NEW |