OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
| 5 [DartPackage="mojo_services"] |
5 module mojo.media; | 6 module mojo.media; |
6 | 7 |
7 // TODO(johngro): When the new extensible MojoResult has been introduced, | 8 // TODO(johngro): When the new extensible MojoResult has been introduced, |
8 // redefine all of these results to be MojoResults which exist in the Media | 9 // redefine all of these results to be MojoResults which exist in the Media |
9 // domain. For now, comments are included about how the results will probably | 10 // domain. For now, comments are included about how the results will probably |
10 // be bucketed when the time for the transition comes. | 11 // be bucketed when the time for the transition comes. |
11 // | 12 // |
12 // see | 13 // see |
13 // https://docs.google.com/document/d/1A5QL20LzfRDOmsQKyHnA5HK1ZlmrLwAQO9y98GiDN
yI/edit | 14 // https://docs.google.com/document/d/1A5QL20LzfRDOmsQKyHnA5HK1ZlmrLwAQO9y98GiDN
yI/edit |
14 // | 15 // |
(...skipping 10 matching lines...) Expand all Loading... |
25 INSUFFICIENT_RESOURCES = -7, // bucket -> RESOURCE_EXHAUSTED | 26 INSUFFICIENT_RESOURCES = -7, // bucket -> RESOURCE_EXHAUSTED |
26 BAD_STATE = -8, // bucket -> FAILED_PRECON | 27 BAD_STATE = -8, // bucket -> FAILED_PRECON |
27 BUF_OVERFLOW = -9, // bucket -> RESOURCE_EXHAUSTED | 28 BUF_OVERFLOW = -9, // bucket -> RESOURCE_EXHAUSTED |
28 FLUSHED = -10, // bucket -> ABORTED or CANCELLED | 29 FLUSHED = -10, // bucket -> ABORTED or CANCELLED |
29 BUSY = -11, // bucket -> BUSY | 30 BUSY = -11, // bucket -> BUSY |
30 PROTOCOL_ERROR = -12, // bucket -> FAILED_PRECON | 31 PROTOCOL_ERROR = -12, // bucket -> FAILED_PRECON |
31 ALREADY_EXISTS = -13, // bucket -> ALREADY_EXISTS | 32 ALREADY_EXISTS = -13, // bucket -> ALREADY_EXISTS |
32 NOT_FOUND = -14, // bucket -> NOT_FOUND | 33 NOT_FOUND = -14, // bucket -> NOT_FOUND |
33 SHUTTING_DOWN = -15, // bucket -> FAILED_PRECON | 34 SHUTTING_DOWN = -15, // bucket -> FAILED_PRECON |
34 }; | 35 }; |
OLD | NEW |