diff options
author | jond@google.com <jond@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-30 19:10:40 +0000 |
---|---|---|
committer | jond@google.com <jond@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-30 19:10:40 +0000 |
commit | 216326c656dff569a10195ab91edecf8f43a33b1 (patch) | |
tree | 12f87f5be2cfb9cb861b7526be3d8e923036eca0 /ppapi/api/ppp_messaging.idl | |
parent | 5ce7b1d9688559ebf02023a067399b1a7c78181a (diff) | |
download | chromium_src-216326c656dff569a10195ab91edecf8f43a33b1.zip chromium_src-216326c656dff569a10195ab91edecf8f43a33b1.tar.gz chromium_src-216326c656dff569a10195ab91edecf8f43a33b1.tar.bz2 |
Changed all @code to <code> and @endcode to </code> as per dmichael. Adding Polina to the review to look at url_loader.h and give approval of text that points to example.
Review URL: http://codereview.chromium.org/7715005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98856 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/api/ppp_messaging.idl')
-rw-r--r-- | ppapi/api/ppp_messaging.idl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ppapi/api/ppp_messaging.idl b/ppapi/api/ppp_messaging.idl index 4351423..af5f66c 100644 --- a/ppapi/api/ppp_messaging.idl +++ b/ppapi/api/ppp_messaging.idl @@ -27,19 +27,19 @@ interface PPP_Messaging { * JavaScript execution will not be blocked while HandleMessage() is * processing the message. * - * @param[in] instance A <code>PP_Instance</code> indentifying one instance + * @param[in] instance A <code>PP_Instance</code> identifying one instance * of a module. * @param[in] message A <code>PP_Var</code> containing the data to be sent * to JavaScript. Message can have an int32_t, double, bool, or string value * (objects are not supported). * - * <strong>Example:</strong> - * * The following JavaScript code invokes <code>HandleMessage</code>, passing * the module instance on which it was invoked, with <code>message</code> * being a string <code>PP_Var</code> containing "Hello world!" * - * @code + * <strong>Example:</strong> + * + * <code> * * <body> * <object id="plugin" @@ -49,7 +49,7 @@ interface PPP_Messaging { * </script> * </body> * - * @endcode + * </code> * */ void HandleMessage([in] PP_Instance instance, [in] PP_Var message); |