diff options
author | jond@google.com <jond@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-28 17:02:59 +0000 |
---|---|---|
committer | jond@google.com <jond@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-28 17:02:59 +0000 |
commit | e16d4401b81612b651077c569ad61990f6b420d1 (patch) | |
tree | 7db435956c38b329b4fd31e09a99e1c81f5d3861 /ppapi/c/ppp_instance.h | |
parent | 9cb3b066d2078163a51611fbf215af46ce46b97a (diff) | |
download | chromium_src-e16d4401b81612b651077c569ad61990f6b420d1.zip chromium_src-e16d4401b81612b651077c569ad61990f6b420d1.tar.gz chromium_src-e16d4401b81612b651077c569ad61990f6b420d1.tar.bz2 |
pp_stdint.h: moved else, include, and endif
ppb.h: changed to relative url
ppb_audio.h: changed to relative url
ppb_audio_config.h: changed to relative url
ppb_image_data.h: changed in/out to in,out (correct syntax)
ppb_url_loader.h: removed a bunch of </li> tags that were unneeded and causing warnings, also rename parm to param and in/out to in,out
ppp_instance.h: escaped some <embed> tags so they didn't confuse Doxygen.
Review URL: http://codereview.chromium.org/7248017
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@90782 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/c/ppp_instance.h')
-rw-r--r-- | ppapi/c/ppp_instance.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/ppapi/c/ppp_instance.h b/ppapi/c/ppp_instance.h index af09beb..40592d3 100644 --- a/ppapi/c/ppp_instance.h +++ b/ppapi/c/ppp_instance.h @@ -47,7 +47,7 @@ struct PPP_Instance_0_5 { #endif /** * Creation handler that is called when a new instance is created. It is - * called for each instantiation on the page, corresponding to one <embed> + * called for each instantiation on the page, corresponding to one \<embed\> * tag on the page. * * Generally you would handle this call by initializing the information @@ -69,15 +69,15 @@ struct PPP_Instance_0_5 { * @param[in] argc The number of arguments contained in @a argn and @a argv. * * @param[in] argn An array of argument names. These argument names are - * supplied in the <embed> tag, for example: - * <embed id="nacl_module" dimensions="2"> will produce two argument - * names: "id" and "dimensions." + * supplied in the \<embed\> tag, for example: + * <code>\<embed id="nacl_module" dimensions="2"\></code> will produce two + * argument names: "id" and "dimensions." * * @param[in] argv An array of argument values. These are the values of the - * arguments listed in the <embed> tag, for example - * <embed id="nacl_module" dimensions="2"> will produce two argument - * values: "nacl_module" and "2". The indices of these values match the - * indices of the corresponding names in @a argn. + * arguments listed in the \<embed\> tag, for example + * <code>\<embed id="nacl_module" dimensions="2"\></code> will produce two + * argument values: "nacl_module" and "2". The indices of these values match + * the indices of the corresponding names in @a argn. * * @return @a PP_TRUE on success or @a PP_FALSE on failure. */ @@ -216,7 +216,7 @@ struct PPP_Instance_0_5 { * @param[in] instance A PP_Instance indentifying the instance that should * do the load. * - * @param[in] url_loader A PP_Resource an open PPB_URLLoader instance. + * @param[in] url_loader An open PPB_URLLoader instance. * * @return PP_TRUE if the data was handled, PP_FALSE otherwise. */ |