diff options
author | dschuff@chromium.org <dschuff@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-14 10:07:46 +0000 |
---|---|---|
committer | dschuff@chromium.org <dschuff@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-14 10:07:46 +0000 |
commit | 923c116f86cfc2d1f500e0a1afbe69999297e354 (patch) | |
tree | c78c287fb0c819e44eb8a7295d88f6d527d04e56 /ppapi/api | |
parent | da4756ede951255bb2a1f1c815485225a444c716 (diff) | |
download | chromium_src-923c116f86cfc2d1f500e0a1afbe69999297e354.zip chromium_src-923c116f86cfc2d1f500e0a1afbe69999297e354.tar.gz chromium_src-923c116f86cfc2d1f500e0a1afbe69999297e354.tar.bz2 |
Pepper and IPC plumbing to display message to NaCl user
The goal is to display an infobar for the user when when the NaCl
manifest does not have an entry for nexe usable on the user's
architecture (e.g. if the user is on arm but only x86 nexes have
been built).
This CL is the plumbing from the NaCl plugin (which actually
checks the manifest) into the browser process UI thread, which
can actually do the UI.
R=
sehr@chromium.org/jvoung@chromium.org (plugin, nacl_host)
brettw@chromium.org (ppapi/, chrome/renderer/pepper, chrome/browser/renderer_host)
jschuh@chromium.org (chrome/common)
BUG=154121
Review URL: https://chromiumcodereview.appspot.com/11446081
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@173139 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/api')
-rw-r--r-- | ppapi/api/private/ppb_nacl_private.idl | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/ppapi/api/private/ppb_nacl_private.idl b/ppapi/api/private/ppb_nacl_private.idl index 60821c0..aa65b97 100644 --- a/ppapi/api/private/ppb_nacl_private.idl +++ b/ppapi/api/private/ppb_nacl_private.idl @@ -26,6 +26,15 @@ enum PP_NaClResult { PP_NACL_USE_SRPC = 128 }; +/** NaCl-specific errors that should be reported to the user */ +enum PP_NaClError { + /** + * The manifest program element does not contain a program usable on the + * user's architecture + */ + PP_NACL_MANIFEST_MISSING_ARCH = 0 +}; + /* PPB_NaCl_Private */ interface PPB_NaCl_Private { /* Launches NaCl's sel_ldr process. Returns PP_NACL_OK on success and writes @@ -99,4 +108,8 @@ interface PPB_NaCl_Private { /* Return true if PNaCl is turned on. */ PP_Bool IsPnaclEnabled(); + + /* Display a UI message to the user. */ + PP_NaClResult ReportNaClError([in] PP_Instance instance, + [in] PP_NaClError message_id); }; |