Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(724)

Side by Side Diff: ppapi/c/pp_errors.h

Issue 270213004: Implement Pepper PPB_VideoDecoder interface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 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 Thu Jun 13 13:02:05 2013. */ 6 /* From pp_errors.idl modified Wed May 7 18:10:40 2014. */
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
11 #include "ppapi/c/pp_macros.h" 11 #include "ppapi/c/pp_macros.h"
12 12
13 /** 13 /**
14 * @file 14 * @file
15 * This file defines an enumeration of all PPAPI error codes. 15 * This file defines an enumeration of all PPAPI error codes.
16 */ 16 */
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 * in use. 171 * in use.
172 */ 172 */
173 PP_ERROR_ADDRESS_IN_USE = -108, 173 PP_ERROR_ADDRESS_IN_USE = -108,
174 /** 174 /**
175 * This value indicates that the message was too large for the transport. 175 * This value indicates that the message was too large for the transport.
176 */ 176 */
177 PP_ERROR_MESSAGE_TOO_BIG = -109, 177 PP_ERROR_MESSAGE_TOO_BIG = -109,
178 /** 178 /**
179 * This value indicates that the host name could not be resolved. 179 * This value indicates that the host name could not be resolved.
180 */ 180 */
181 PP_ERROR_NAME_NOT_RESOLVED = -110 181 PP_ERROR_NAME_NOT_RESOLVED = -110,
182 /**
183 * This value indicates that plugin passed bad input data to the browser.
184 */
185 PP_ERROR_UNREADABLE_INPUT = -111,
186 /**
187 * This value indicates that a platform failure occurred. This indicates that
188 * the browser could not complete a valid request from the plugin.
189 */
190 PP_ERROR_PLATFORM_FAILED = -112
182 }; 191 };
183 /** 192 /**
184 * @} 193 * @}
185 */ 194 */
186 195
187 #endif /* PPAPI_C_PP_ERRORS_H_ */ 196 #endif /* PPAPI_C_PP_ERRORS_H_ */
188 197
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698