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

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

Issue 264943003: Pepper: Move manifest logic to components/nacl. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 6 years, 7 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 373 matching lines...) Expand 10 before | Expand all | Expand 10 after
384 */ 384 */
385 void ProcessNaClManifest([in] PP_Instance instance, 385 void ProcessNaClManifest([in] PP_Instance instance,
386 [in] str_t program_url); 386 [in] str_t program_url);
387 387
388 /* Returns the manifest url as passed as a plugin argument. */ 388 /* Returns the manifest url as passed as a plugin argument. */
389 PP_Var GetManifestURLArgument([in] PP_Instance instance); 389 PP_Var GetManifestURLArgument([in] PP_Instance instance);
390 390
391 PP_Bool IsPNaCl([in] PP_Instance instance); 391 PP_Bool IsPNaCl([in] PP_Instance instance);
392 392
393 PP_Bool DevInterfacesEnabled([in] PP_Instance instance); 393 PP_Bool DevInterfacesEnabled([in] PP_Instance instance);
394
395 int32_t CreatePnaclManifest([in] PP_Instance instance);
396 int32_t CreateJsonManifest([in] PP_Instance instance,
397 [in] str_t manifest_base_url,
398 [in] str_t sandbox_isa,
399 [in] str_t manifest_data);
400
401 void DestroyManifest([in] PP_Instance instance,
402 [in] int32_t manifest_id);
403
404 PP_Bool GetManifestProgramURL([in] PP_Instance instance,
405 [in] int32_t manifest_id,
406 [out] PP_Var full_url,
407 [out] PP_PNaClOptions pnacl_options,
408 [out] PP_Bool uses_nonsfi_mode);
409
410 PP_Bool ManifestResolveKey([in] PP_Instance instance,
411 [in] int32_t manifest_id,
412 [in] str_t key,
413 [out] PP_Var full_url,
414 [out] PP_PNaClOptions pnacl_options);
394 }; 415 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698