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

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

Issue 193313002: Pepper: Move GetSandboxISA() to PPB_NaCl_Private. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixes for dmichael Created 6 years, 9 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 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 [in] PP_NaClError error, 270 [in] PP_NaClError error,
271 [in] PP_Bool is_installed); 271 [in] PP_Bool is_installed);
272 272
273 /* Performs internal cleanup when an instance is destroyed. */ 273 /* Performs internal cleanup when an instance is destroyed. */
274 void InstanceDestroyed([in] PP_Instance instance); 274 void InstanceDestroyed([in] PP_Instance instance);
275 275
276 /* Return true if the NaCl debug stub is enabled and the loaded app 276 /* Return true if the NaCl debug stub is enabled and the loaded app
277 * will be attached to a debugger. 277 * will be attached to a debugger.
278 */ 278 */
279 PP_Bool NaClDebugStubEnabled(); 279 PP_Bool NaClDebugStubEnabled();
280
281 str_t GetSandboxISA();
Mark Seaborn 2014/03/12 18:24:14 Maybe add a comment, since the other functions her
280 }; 282 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698