Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(373)

Unified Diff: ppapi/api/ppb_messaging.idl

Issue 7715005: Changed all @code to <code> and @endcode to </code> as per dmichael (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ppapi/api/ppb_messaging.idl
===================================================================
--- ppapi/api/ppb_messaging.idl (revision 97869)
+++ ppapi/api/ppb_messaging.idl (working copy)
@@ -26,7 +26,7 @@
* the DOM element for the given module instance. A call to PostMessage()
* will not block while the message is processed.
*
- * @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.
@@ -46,7 +46,7 @@
*
* <strong>Example:</strong>
*
- * @code
+ * <code>
*
* <body>
* <object id="plugin"
@@ -59,11 +59,11 @@
* </script>
* </body>
*
- * @endcode
+ * </code>
*
* The module instance then invokes PostMessage() as follows:
*
- * @code
+ * <code>
*
*
* char hello_world[] = "Hello world!";
@@ -73,7 +73,7 @@
* ppb_messaging_interface->PostMessage(instance, hello_var); // Copies var.
* ppb_var_interface->Release(hello_var);
*
- * @endcode
+ * </code>
*
* The browser will pop-up an alert saying "Hello world!"
*/

Powered by Google App Engine
This is Rietveld 408576698