diff options
author | polina@google.com <polina@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-08 17:45:36 +0000 |
---|---|---|
committer | polina@google.com <polina@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-08 17:45:36 +0000 |
commit | 4e601fcf25223ca20444bcc22c252d84d5a1621e (patch) | |
tree | 613fb202da903a24cd5b19373b8d1c6274961f81 /ppapi/api/ppp.idl | |
parent | 3ddc371345a7a6c1a3cb1c570b145aa3df064ddb (diff) | |
download | chromium_src-4e601fcf25223ca20444bcc22c252d84d5a1621e.zip chromium_src-4e601fcf25223ca20444bcc22c252d84d5a1621e.tar.gz chromium_src-4e601fcf25223ca20444bcc22c252d84d5a1621e.tar.bz2 |
PPAPI: header comments on when PPP_Instance::DidDestroy and PPP_ShutdownModule
are called on trusted and untrusted implementations.
BUG=91758
TEST=n/a
Review URL: http://codereview.chromium.org/7576026
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@95835 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/api/ppp.idl')
-rw-r--r-- | ppapi/api/ppp.idl | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/ppapi/api/ppp.idl b/ppapi/api/ppp.idl index 05c1e83..4b9aed6 100644 --- a/ppapi/api/ppp.idl +++ b/ppapi/api/ppp.idl @@ -70,8 +70,12 @@ PP_EXPORT int32_t PPP_InitializeModule(PP_Module module, * Since your module runs in a separate process, there's no need to free * allocated memory. There is also no need to free any resources since all of * resources associated with an instance will be force-freed when that instance - * is deleted. Moreover, this function will not be called when Chrome does - * "fast shutdown" of a web page. + * is deleted. + * + * <strong>Note:</strong> This function will always be skipped on untrusted + * (Native Client) implementations. This function may be skipped on trusted + * implementations in certain circumstances when Chrome does "fast shutdown" + * of a web page. */ PP_EXPORT void PPP_ShutdownModule(); /** |