| 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.
|
|
|