OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef WebMediaSessionError_h |
| 6 #define WebMediaSessionError_h |
| 7 |
| 8 namespace blink { |
| 9 |
| 10 struct WebMediaSessionError { |
| 11 enum ErrorType { |
| 12 ErrorTypeActivate = 0, |
| 13 ErrorTypeLast = ErrorTypeActivate |
| 14 }; |
| 15 |
| 16 WebMediaSessionError(ErrorType errorType) |
| 17 : errorType(errorType) |
| 18 { |
| 19 } |
| 20 |
| 21 ErrorType errorType; |
| 22 }; |
| 23 |
| 24 } // namespace blink |
| 25 |
| 26 #endif // WebMediaSessionError_h |
OLD | NEW |