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

Unified Diff: ppapi/api/private/ppb_nacl_private.idl

Issue 302093012: Pepper: Refactor OpenManifestEntry. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/nacl/renderer/ppb_nacl_private_impl.cc ('k') | ppapi/c/private/ppb_nacl_private.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/api/private/ppb_nacl_private.idl
diff --git a/ppapi/api/private/ppb_nacl_private.idl b/ppapi/api/private/ppb_nacl_private.idl
index be66bfd6006d53e521f4cc1f9fafbc0a762cadce..ff19b36b728e62a2e6fb4052e311c6dd0bb36bd7 100644
--- a/ppapi/api/private/ppb_nacl_private.idl
+++ b/ppapi/api/private/ppb_nacl_private.idl
@@ -389,11 +389,16 @@ interface PPB_NaCl_Private {
[out] PP_PNaClOptions pnacl_options,
[out] PP_Bool uses_nonsfi_mode);
- PP_Bool ManifestResolveKey([in] PP_Instance instance,
- [in] PP_Bool helper_process,
- [in] str_t key,
- [out] PP_Var full_url,
- [out] PP_PNaClOptions pnacl_options);
+ /* Opens a manifest entry for the given instance. If this is for a helper
+ * process, we consult our internal pnacl.json instead of the user-supplied
+ * NMF.
+ * Fails for files which require PNaCl translation.
+ */
+ void OpenManifestEntry([in] PP_Instance instance,
+ [in] PP_Bool is_helper_process,
+ [in] str_t key,
+ [out] PP_NaClFileInfo file_info,
+ [in] PP_CompletionCallback callback);
/* Returns the filenames for the llc and ld tools, parsing that information
* from the file given in |filename|.
@@ -424,11 +429,4 @@ interface PPB_NaCl_Private {
[in] str_t url,
[out] PP_NaClFileInfo file_info,
[in] PP_CompletionCallback callback);
-
- /* Downloads a non-nexe file specified in the manifest, and sets |file_info|
- * to corresponding information about the file. */
- void DownloadFile([in] PP_Instance instance,
- [in] str_t url,
- [out] PP_NaClFileInfo file_info,
- [in] PP_CompletionCallback callback);
};
« no previous file with comments | « components/nacl/renderer/ppb_nacl_private_impl.cc ('k') | ppapi/c/private/ppb_nacl_private.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698