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

Side by Side Diff: ppapi/api/pp_errors.idl

Issue 270213004: Implement Pepper PPB_VideoDecoder interface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase, update to PPAPI message map macros. 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 /** 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 160 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.
yzshen1 2014/05/14 18:08:23 - Does it make sense to consider reusing existing
bbudge 2014/05/14 19:35:04 I thought about both of those possibilities. PP_ER
yzshen1 2014/05/14 22:58:16 Okay. One thing I don't quite understand is "platf
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698