| 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 /** | 6 /** |
| 7 * This file defines an enumeration of all PPAPI error codes. | 7 * This file defines an enumeration of all PPAPI error codes. |
| 8 */ | 8 */ |
| 9 | 9 |
| 10 /** | 10 /** |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 * This value indicates failure due to a file having been modified | 76 * This value indicates failure due to a file having been modified |
| 77 * unexpectedly. | 77 * unexpectedly. |
| 78 */ | 78 */ |
| 79 PP_ERROR_FILECHANGED = -23, | 79 PP_ERROR_FILECHANGED = -23, |
| 80 /** This value indicates failure due to a time limit being exceeded. */ | 80 /** This value indicates failure due to a time limit being exceeded. */ |
| 81 PP_ERROR_TIMEDOUT = -30, | 81 PP_ERROR_TIMEDOUT = -30, |
| 82 /** | 82 /** |
| 83 * This value indicates that the user cancelled rather than providing | 83 * This value indicates that the user cancelled rather than providing |
| 84 * expected input. | 84 * expected input. |
| 85 */ | 85 */ |
| 86 PP_ERROR_USERCANCEL = -40 | 86 PP_ERROR_USERCANCEL = -40, |
| 87 /** |
| 88 * This value indicates that the graphics context was lost due to a |
| 89 * power management event. |
| 90 */ |
| 91 PP_ERROR_CONTEXT_LOST = -50 |
| 87 }; | 92 }; |
| 88 | 93 |
| OLD | NEW |