summaryrefslogtreecommitdiffstats
path: root/ppapi/c/private
diff options
context:
space:
mode:
authorteravest@chromium.org <teravest@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-06-20 23:31:34 +0000
committerteravest@chromium.org <teravest@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-06-20 23:31:34 +0000
commitd3833fe876803c050cdddb1d62d26fa492de4dc2 (patch)
treeba3c24b6a756f00eead4d3a992bf8a228aa763c3 /ppapi/c/private
parent87adc13029b0e6a57dc3f589eafd59aceb8fe5f1 (diff)
downloadchromium_src-d3833fe876803c050cdddb1d62d26fa492de4dc2.zip
chromium_src-d3833fe876803c050cdddb1d62d26fa492de4dc2.tar.gz
chromium_src-d3833fe876803c050cdddb1d62d26fa492de4dc2.tar.bz2
Pepper: Simplify OpenResource() for Non-SFI.
The Non-SFI implementation of OpenResource is pretty complicated. This is because the logic to support that operation was entirely in the trusted plugin. Now, we can perform the necessary logic entirely in Chromium, so it can be made much simpler. CQ_EXTRA_TRYBOTS=tryserver.chromium:linux_rel_precise32 BUG=239656 Review URL: https://codereview.chromium.org/339213003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278859 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/c/private')
-rw-r--r--ppapi/c/private/ppb_nacl_private.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/ppapi/c/private/ppb_nacl_private.h b/ppapi/c/private/ppb_nacl_private.h
index 9df8723..3b23e19 100644
--- a/ppapi/c/private/ppb_nacl_private.h
+++ b/ppapi/c/private/ppb_nacl_private.h
@@ -3,7 +3,7 @@
* found in the LICENSE file.
*/
-/* From private/ppb_nacl_private.idl modified Fri Jun 13 15:14:51 2014. */
+/* From private/ppb_nacl_private.idl modified Wed Jun 18 19:15:01 2014. */
#ifndef PPAPI_C_PRIVATE_PPB_NACL_PRIVATE_H_
#define PPAPI_C_PRIVATE_PPB_NACL_PRIVATE_H_
@@ -194,13 +194,6 @@ struct PPP_ManifestService_1_0 {
PP_Bool (*Quit)(void* user_data);
/* Called when PPAPI initialization in the NaCl plugin is finished. */
PP_Bool (*StartupInitializationComplete)(void* user_data);
- /* Called when irt_open_resource() is invoked in the NaCl plugin.
- * Upon completion, callback will be invoked with given callback_user_data
- * and the result file handle (or PP_kInvalidFileHandle on error). */
- PP_Bool (*OpenResource)(void* user_data,
- const char* entry_key,
- PP_OpenResourceCompletionCallback callback,
- void* callback_user_data);
};
typedef struct PPP_ManifestService_1_0 PPP_ManifestService;