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 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
257 * the given instance. | 257 * the given instance. |
258 */ | 258 */ |
259 void SetReadOnlyProperty([in] PP_Instance instance, | 259 void SetReadOnlyProperty([in] PP_Instance instance, |
260 [in] PP_Var key, | 260 [in] PP_Var key, |
261 [in] PP_Var value); | 261 [in] PP_Var value); |
262 | 262 |
263 /* Report an error that occured while attempting to load a nexe. */ | 263 /* Report an error that occured while attempting to load a nexe. */ |
264 void ReportLoadError([in] PP_Instance instance, | 264 void ReportLoadError([in] PP_Instance instance, |
265 [in] PP_NaClError error, | 265 [in] PP_NaClError error, |
266 [in] PP_Bool is_installed); | 266 [in] PP_Bool is_installed); |
| 267 |
| 268 /* Return true if the NaCl debug stub is enabled and the loaded app |
| 269 * will be attached to a debugger. |
| 270 */ |
| 271 PP_Bool NaClDebugStubEnabled(); |
267 }; | 272 }; |
OLD | NEW |