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

Unified Diff: ppapi/api/pp_completion_callback.idl

Issue 13238002: [PPAPI] Documentation fixes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge yet again Created 7 years, 8 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
« no previous file with comments | « no previous file | ppapi/api/ppb_graphics_3d.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/api/pp_completion_callback.idl
diff --git a/ppapi/api/pp_completion_callback.idl b/ppapi/api/pp_completion_callback.idl
index 871a135a3fcab17c1e73b455efaf988474003c8a..46b6342aa2b83b6a53579f66162bef57636f343b 100644
--- a/ppapi/api/pp_completion_callback.idl
+++ b/ppapi/api/pp_completion_callback.idl
@@ -66,10 +66,10 @@ enum PP_CompletionCallback_Flag {
* ways:
* - Required: The callback will always be invoked asynchronously on the
* thread where the associated PPB method was invoked. The method
- * will always return <code>PP_OK_COMPLETIONPENDING</code> when a
- * required callback, and the callback will be invoked later
- * (barring system or thread shutdown; see PPB_MessageLoop for
- * details). Required callbacks are the default.
+ * will always return PP_OK_COMPLETIONPENDING when a required
+ * callback, and the callback will be invoked later (barring
+ * system or thread shutdown; see PPB_MessageLoop for details).
+ * Required callbacks are the default.
*
* NOTE: If you use a required callback on a background thread,
* you must have created and attached a PPB_MessageLoop.
@@ -141,16 +141,16 @@ enum PP_CompletionCallback_Flag {
*
* <strong>Example, creating a Required callback:</strong>
*
- * <code>
+ * @code
* struct PP_CompletionCallback cc = PP_MakeCompletionCallback(Foo, NULL);
- * </code>
+ * @endcode
*
* <strong>Example, creating an Optional callback:</strong>
*
- * <code>
+ * @code
* struct PP_CompletionCallback cc = PP_MakeCompletionCallback(Foo, NULL);
* cc.flags = cc.flags | PP_COMPLETIONCALLBACK_FLAG_OPTIONAL;
- * </code>
+ * @endcode
*
* @param[in] func A <code>PP_CompletionCallback_Func</code> that will be
* called.
« no previous file with comments | « no previous file | ppapi/api/ppb_graphics_3d.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698