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

Unified Diff: ppapi/proxy/flash_menu_resource.cc

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/cpp/message_loop.h ('k') | ppapi/tests/test_case.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/flash_menu_resource.cc
diff --git a/ppapi/proxy/flash_menu_resource.cc b/ppapi/proxy/flash_menu_resource.cc
index 1c3b7f037290440670b9a4ab8c7f014112ea0a1c..74428b0d11e05fd9c1af7ccea6ff5020d864abbb 100644
--- a/ppapi/proxy/flash_menu_resource.cc
+++ b/ppapi/proxy/flash_menu_resource.cc
@@ -49,12 +49,12 @@ int32_t FlashMenuResource::Show(
// 1. Flash sends a show request to the renderer.
// 2. The show handler in the renderer (in the case of full screen) requests
// the window rect which is a sync message to the browser. This causes
- // a nested message loop to be spun up in the renderer.
+ // a nested run loop to be spun up in the renderer.
// 3. Flash expects context menus to be synchronous so it starts a nested
- // message loop. This creates a second nested message loop in both the
+ // message loop. This creates a second nested run loop in both the
// plugin and renderer process.
// 4. The browser sends the window rect reply to unblock the renderer, but
- // it's in the second nested message loop and the reply will *not*
+ // it's in the second nested run loop and the reply will *not*
// unblock this loop.
// 5. The second loop won't exit until the message loop is complete, but
// that can't start until the first one exits.
« no previous file with comments | « ppapi/cpp/message_loop.h ('k') | ppapi/tests/test_case.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698