OLD | NEW |
1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2011 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 | 5 |
6 /* From pp_errors.idl modified Sat Jul 16 16:50:26 2011. */ | 6 /* From pp_errors.idl modified Sat Jul 16 16:50:26 2011. */ |
7 | 7 |
8 #ifndef PPAPI_C_PP_ERRORS_H_ | 8 #ifndef PPAPI_C_PP_ERRORS_H_ |
9 #define PPAPI_C_PP_ERRORS_H_ | 9 #define PPAPI_C_PP_ERRORS_H_ |
10 | 10 |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 * This value indicates failure due to a file having been modified | 78 * This value indicates failure due to a file having been modified |
79 * unexpectedly. | 79 * unexpectedly. |
80 */ | 80 */ |
81 PP_ERROR_FILECHANGED = -23, | 81 PP_ERROR_FILECHANGED = -23, |
82 /** This value indicates failure due to a time limit being exceeded. */ | 82 /** This value indicates failure due to a time limit being exceeded. */ |
83 PP_ERROR_TIMEDOUT = -30, | 83 PP_ERROR_TIMEDOUT = -30, |
84 /** | 84 /** |
85 * This value indicates that the user cancelled rather than providing | 85 * This value indicates that the user cancelled rather than providing |
86 * expected input. | 86 * expected input. |
87 */ | 87 */ |
88 PP_ERROR_USERCANCEL = -40 | 88 PP_ERROR_USERCANCEL = -40, |
| 89 /** |
| 90 * This value indicates that the graphics context was lost due to a |
| 91 * power management event. |
| 92 */ |
| 93 PP_ERROR_CONTEXT_LOST = -50 |
89 }; | 94 }; |
90 /** | 95 /** |
91 * @} | 96 * @} |
92 */ | 97 */ |
93 | 98 |
94 #endif /* PPAPI_C_PP_ERRORS_H_ */ | 99 #endif /* PPAPI_C_PP_ERRORS_H_ */ |
95 | 100 |
OLD | NEW |