diff options
author | bbudge@chromium.org <bbudge@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-17 23:39:40 +0000 |
---|---|---|
committer | bbudge@chromium.org <bbudge@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-17 23:39:40 +0000 |
commit | 7522077b67bd9aa3ef0630b83d1572bdd678e88c (patch) | |
tree | 0db3cdd245b971713770127c5f3d4106fa8097ec /ppapi/api | |
parent | b302556444decceea748adb4fffa5c7a5e33bbd8 (diff) | |
download | chromium_src-7522077b67bd9aa3ef0630b83d1572bdd678e88c.zip chromium_src-7522077b67bd9aa3ef0630b83d1572bdd678e88c.tar.gz chromium_src-7522077b67bd9aa3ef0630b83d1572bdd678e88c.tar.bz2 |
Remove the NaCl SRPC proxy from Chrome.
Removes GYP targets for untrusted and trusted parts of the proxy (SRPC proxy
source files will be removed in a follow-on, to keep this patch manageable.)
Removes SRPC proxy startup code from NaCl trusted plugin.
Removes PPAPI PPP* interface adapters from the Plugin class.
Removes a bunch of GYP external dependency declarations that are no longer
needed.
TBR=brettw@chromium.org for OWNERS
BUG=169152
TEST=none
Review URL: https://chromiumcodereview.appspot.com/11783112
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@177531 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/api')
-rw-r--r-- | ppapi/api/private/ppb_nacl_private.idl | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ppapi/api/private/ppb_nacl_private.idl b/ppapi/api/private/ppb_nacl_private.idl index 88c88fe..e5d14a0 100644 --- a/ppapi/api/private/ppb_nacl_private.idl +++ b/ppapi/api/private/ppb_nacl_private.idl @@ -21,9 +21,7 @@ enum PP_NaClResult { /** Error creating the module */ PP_NACL_ERROR_MODULE = 2, /** Error creating and initializing the instance */ - PP_NACL_ERROR_INSTANCE = 3, - /** SRPC proxy should be used instead */ - PP_NACL_USE_SRPC = 128 + PP_NACL_ERROR_INSTANCE = 3 }; /** NaCl-specific errors that should be reported to the user */ |