| 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 428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 439 PP_Bool GetPnaclResourceInfo([in] PP_Instance instance, | 439 PP_Bool GetPnaclResourceInfo([in] PP_Instance instance, |
| 440 [in] str_t filename, | 440 [in] str_t filename, |
| 441 [out] PP_Var llc_tool_name, | 441 [out] PP_Var llc_tool_name, |
| 442 [out] PP_Var ld_tool_name); | 442 [out] PP_Var ld_tool_name); |
| 443 | 443 |
| 444 // PP_Var string of attributes describing the CPU features supported | 444 // PP_Var string of attributes describing the CPU features supported |
| 445 // by the current architecture. The string is a comma-delimited list | 445 // by the current architecture. The string is a comma-delimited list |
| 446 // of attributes supported by LLVM in its -mattr= option: | 446 // of attributes supported by LLVM in its -mattr= option: |
| 447 // http://llvm.org/docs/CommandGuide/llc.html#cmdoption-mattr | 447 // http://llvm.org/docs/CommandGuide/llc.html#cmdoption-mattr |
| 448 PP_Var GetCpuFeatureAttrs(); | 448 PP_Var GetCpuFeatureAttrs(); |
| 449 |
| 450 /* Posts a message to the JavaScript object for the given instance. |
| 451 * This method may be called on any thread. |
| 452 */ |
| 453 void PostMessageToJavaScript([in] PP_Instance instance, |
| 454 [in] str_t message); |
| 449 }; | 455 }; |
| OLD | NEW |