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

Unified Diff: ppapi/api/private/ppb_flash_message_loop.idl

Issue 2828913003: Replace "nested message loop" with "nested run loop" in comments. (Closed)
Patch Set: rebase Created 3 years, 7 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 | « ppapi/api/ppb_message_loop.idl ('k') | ppapi/api/private/ppb_testing_private.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/api/private/ppb_flash_message_loop.idl
diff --git a/ppapi/api/private/ppb_flash_message_loop.idl b/ppapi/api/private/ppb_flash_message_loop.idl
index 48749072a50717a7b4034d0ebeb904dd7cb97013..1b6a834183108dbb7722dba85214388458430e8c 100644
--- a/ppapi/api/private/ppb_flash_message_loop.idl
+++ b/ppapi/api/private/ppb_flash_message_loop.idl
@@ -13,7 +13,7 @@ label Chrome {
/**
* The <code>PPB_Flash_MessageLoop</code> interface supports Pepper Flash to run
- * nested message loops.
+ * nested run loops.
*/
interface PPB_Flash_MessageLoop {
/**
@@ -39,14 +39,14 @@ interface PPB_Flash_MessageLoop {
PP_Bool IsFlashMessageLoop([in] PP_Resource resource);
/**
- * Runs a nested message loop. The plugin will be reentered from this call.
+ * Runs a nested run loop. The plugin will be reentered from this call.
* This function is used in places where Flash would normally enter a nested
* message loop (e.g., when displaying context menus), but Pepper provides
* only an asynchronous call. After performing that asynchronous call, call
* <code>Run()</code>. In the callback, call <code>Quit()</code>.
*
* For a given message loop resource, only the first call to
- * <code>Run()</code> will start a nested message loop. The subsequent calls
+ * <code>Run()</code> will start a nested run loop. The subsequent calls
* will return <code>PP_ERROR_FAILED</code> immediately.
*
* @param[in] flash_message_loop The Flash message loop.
@@ -60,14 +60,14 @@ interface PPB_Flash_MessageLoop {
int32_t Run([in] PP_Resource flash_message_loop);
/**
- * Signals to quit the outermost nested message loop. Use this to exit and
+ * Signals to quit the outermost nested run loop. Use this to exit and
* return back to the caller after you call <code>Run()</code>.
*
* If <code>Quit()</code> is not called to balance the call to
- * <code>Run()</code>, the outermost nested message loop will be quitted
+ * <code>Run()</code>, the outermost nested run loop will be quitted
* implicitly when the resource is destroyed.
*
* @param[in] flash_message_loop The Flash message loop.
*/
void Quit([in] PP_Resource flash_message_loop);
-};
+};
« no previous file with comments | « ppapi/api/ppb_message_loop.idl ('k') | ppapi/api/private/ppb_testing_private.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698