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

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

Issue 332463003: Pepper: Remove LOAD_MODULE SRPC call in SFI mode. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes for bbudge Created 6 years, 5 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 /* 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 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 * The |enable_dyncode_syscalls| flag indicates whether or not the nexe 172 * The |enable_dyncode_syscalls| flag indicates whether or not the nexe
173 * will be able to use dynamic code system calls (e.g., mmap with PROT_EXEC). 173 * will be able to use dynamic code system calls (e.g., mmap with PROT_EXEC).
174 * The |enable_exception_handling| flag indicates whether or not the nexe 174 * The |enable_exception_handling| flag indicates whether or not the nexe
175 * will be able to use hardware exception handling. 175 * will be able to use hardware exception handling.
176 * The |enable_crash_throttling| flag indicates whether or not crashes of 176 * The |enable_crash_throttling| flag indicates whether or not crashes of
177 * the nexe contribute to crash throttling statisics and whether nexe starts 177 * the nexe contribute to crash throttling statisics and whether nexe starts
178 * are throttled by crash throttling. 178 * are throttled by crash throttling.
179 */ 179 */
180 void LaunchSelLdr([in] PP_Instance instance, 180 void LaunchSelLdr([in] PP_Instance instance,
181 [in] PP_Bool main_service_runtime, 181 [in] PP_Bool main_service_runtime,
182 [in] PP_NaClFileInfo nexe_file_info,
jvoung (off chromium) 2014/06/30 21:55:14 rebasing issue? there are now two nexe_file_info p
teravest 2014/07/01 17:48:34 Fixed, thanks.
182 [in] str_t alleged_url, 183 [in] str_t alleged_url,
183 [in] PP_NaClFileInfo nexe_file_info, 184 [in] PP_NaClFileInfo nexe_file_info,
184 [in] PP_Bool uses_irt, 185 [in] PP_Bool uses_irt,
185 [in] PP_Bool uses_ppapi, 186 [in] PP_Bool uses_ppapi,
186 [in] PP_Bool uses_nonsfi_mode, 187 [in] PP_Bool uses_nonsfi_mode,
187 [in] PP_Bool enable_ppapi_dev, 188 [in] PP_Bool enable_ppapi_dev,
188 [in] PP_Bool enable_dyncode_syscalls, 189 [in] PP_Bool enable_dyncode_syscalls,
189 [in] PP_Bool enable_exception_handling, 190 [in] PP_Bool enable_exception_handling,
190 [in] PP_Bool enable_crash_throttling, 191 [in] PP_Bool enable_crash_throttling,
191 [out] mem_t imc_handle, 192 [out] mem_t imc_handle,
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
416 [in] PP_Bool is_helper_process, 417 [in] PP_Bool is_helper_process,
417 [in] str_t key, 418 [in] str_t key,
418 [out] PP_NaClFileInfo file_info, 419 [out] PP_NaClFileInfo file_info,
419 [in] PP_CompletionCallback callback); 420 [in] PP_CompletionCallback callback);
420 421
421 /* Sets the start time for PNaCl downloading and translation to the current 422 /* Sets the start time for PNaCl downloading and translation to the current
422 * time. 423 * time.
423 */ 424 */
424 void SetPNaClStartTime([in] PP_Instance instance); 425 void SetPNaClStartTime([in] PP_Instance instance);
425 }; 426 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698