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

Side by Side Diff: ppapi/api/private/ppb_nacl_private.idl

Issue 469423002: NaCl: Send fatal log messages via shared memory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove commented out line Created 6 years, 4 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
« no previous file with comments | « components/nacl/renderer/ppb_nacl_private_impl.cc ('k') | ppapi/c/private/ppb_nacl_private.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 /* This file contains NaCl private interfaces. This interface is not versioned 6 /* This file contains NaCl private interfaces. This interface is not versioned
7 * and is for internal Chrome use. It may change without notice. */ 7 * and is for internal Chrome use. It may change without notice. */
8 8
9 label Chrome { 9 label Chrome {
10 M25 = 1.0 10 M25 = 1.0
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 269
270 /* Report an error that occured while attempting to load a nexe. */ 270 /* Report an error that occured while attempting to load a nexe. */
271 void ReportLoadError([in] PP_Instance instance, 271 void ReportLoadError([in] PP_Instance instance,
272 [in] PP_NaClError error, 272 [in] PP_NaClError error,
273 [in] str_t error_message); 273 [in] str_t error_message);
274 274
275 /* Reports that loading a nexe was aborted. */ 275 /* Reports that loading a nexe was aborted. */
276 void ReportLoadAbort([in] PP_Instance instance); 276 void ReportLoadAbort([in] PP_Instance instance);
277 277
278 /* Reports that the nexe has crashed. */ 278 /* Reports that the nexe has crashed. */
279 void NexeDidCrash([in] PP_Instance instance, 279 void NexeDidCrash([in] PP_Instance instance);
280 [in] str_t crash_log);
281 280
282 /* Performs internal setup when an instance is created. */ 281 /* Performs internal setup when an instance is created. */
283 void InstanceCreated([in] PP_Instance instance); 282 void InstanceCreated([in] PP_Instance instance);
284 283
285 /* Performs internal cleanup when an instance is destroyed. */ 284 /* Performs internal cleanup when an instance is destroyed. */
286 void InstanceDestroyed([in] PP_Instance instance); 285 void InstanceDestroyed([in] PP_Instance instance);
287 286
288 /* Return true if the NaCl debug stub is enabled and the app loaded from 287 /* Return true if the NaCl debug stub is enabled and the app loaded from
289 * alleged_nmf_url will be attached to a debugger. 288 * alleged_nmf_url will be attached to a debugger.
290 */ 289 */
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
405 * Otherwise, |stream_callback| is called repeatedly with blocks of data 404 * Otherwise, |stream_callback| is called repeatedly with blocks of data
406 * as they are received. |stream_finished_callback| is called after all 405 * as they are received. |stream_finished_callback| is called after all
407 * data has been received and dispatched to |stream_callback|. 406 * data has been received and dispatched to |stream_callback|.
408 */ 407 */
409 void StreamPexe([in] PP_Instance instance, 408 void StreamPexe([in] PP_Instance instance,
410 [in] str_t pexe_url, 409 [in] str_t pexe_url,
411 [in] int32_t opt_level, 410 [in] int32_t opt_level,
412 [in] PPP_PexeStreamHandler stream_handler, 411 [in] PPP_PexeStreamHandler stream_handler,
413 [inout] mem_t stream_handler_user_data); 412 [inout] mem_t stream_handler_user_data);
414 }; 413 };
OLDNEW
« no previous file with comments | « components/nacl/renderer/ppb_nacl_private_impl.cc ('k') | ppapi/c/private/ppb_nacl_private.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698