OLD | NEW |
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 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
356 void ProcessNaClManifest([in] PP_Instance instance, | 356 void ProcessNaClManifest([in] PP_Instance instance, |
357 [in] str_t program_url); | 357 [in] str_t program_url); |
358 | 358 |
359 PP_Bool DevInterfacesEnabled([in] PP_Instance instance); | 359 PP_Bool DevInterfacesEnabled([in] PP_Instance instance); |
360 | 360 |
361 PP_Bool GetManifestProgramURL([in] PP_Instance instance, | 361 PP_Bool GetManifestProgramURL([in] PP_Instance instance, |
362 [out] PP_Var full_url, | 362 [out] PP_Var full_url, |
363 [out] PP_PNaClOptions pnacl_options, | 363 [out] PP_PNaClOptions pnacl_options, |
364 [out] PP_Bool uses_nonsfi_mode); | 364 [out] PP_Bool uses_nonsfi_mode); |
365 | 365 |
366 /* Returns the filenames for the llc and ld tools, parsing that information | 366 /* Returns the filenames for the llc and ld tools. */ |
367 * from the file given in |filename|. | |
368 */ | |
369 PP_Bool GetPnaclResourceInfo([in] PP_Instance instance, | 367 PP_Bool GetPnaclResourceInfo([in] PP_Instance instance, |
370 [in] str_t filename, | |
371 [out] PP_Var llc_tool_name, | 368 [out] PP_Var llc_tool_name, |
372 [out] PP_Var ld_tool_name); | 369 [out] PP_Var ld_tool_name); |
373 | 370 |
374 // PP_Var string of attributes describing the CPU features supported | 371 // PP_Var string of attributes describing the CPU features supported |
375 // by the current architecture. The string is a comma-delimited list | 372 // by the current architecture. The string is a comma-delimited list |
376 // of attributes supported by LLVM in its -mattr= option: | 373 // of attributes supported by LLVM in its -mattr= option: |
377 // http://llvm.org/docs/CommandGuide/llc.html#cmdoption-mattr | 374 // http://llvm.org/docs/CommandGuide/llc.html#cmdoption-mattr |
378 PP_Var GetCpuFeatureAttrs(); | 375 PP_Var GetCpuFeatureAttrs(); |
379 | 376 |
380 /* Posts a message to the JavaScript object for the given instance. | 377 /* Posts a message to the JavaScript object for the given instance. |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
416 [in] PP_Bool is_helper_process, | 413 [in] PP_Bool is_helper_process, |
417 [in] str_t key, | 414 [in] str_t key, |
418 [out] PP_NaClFileInfo file_info, | 415 [out] PP_NaClFileInfo file_info, |
419 [in] PP_CompletionCallback callback); | 416 [in] PP_CompletionCallback callback); |
420 | 417 |
421 /* Sets the start time for PNaCl downloading and translation to the current | 418 /* Sets the start time for PNaCl downloading and translation to the current |
422 * time. | 419 * time. |
423 */ | 420 */ |
424 void SetPNaClStartTime([in] PP_Instance instance); | 421 void SetPNaClStartTime([in] PP_Instance instance); |
425 }; | 422 }; |
OLD | NEW |