Chromium Code Reviews| Index: ppapi/c/private/ppb_flash.h |
| diff --git a/ppapi/c/private/ppb_flash.h b/ppapi/c/private/ppb_flash.h |
| index 3f8f2224395c5870b9245bf654a20982ee4aeb23..c2d41dd9d106f443ce6ec8fbc7ac587ab5a9b64a 100644 |
| --- a/ppapi/c/private/ppb_flash.h |
| +++ b/ppapi/c/private/ppb_flash.h |
| @@ -19,7 +19,7 @@ |
| // PPB_Flash ------------------------------------------------------------------- |
| -#define PPB_FLASH_INTERFACE "PPB_Flash;5" |
| +#define PPB_FLASH_INTERFACE "PPB_Flash;6" |
| #ifdef _WIN32 |
| typedef HANDLE PP_FileHandle; |
| @@ -122,11 +122,11 @@ struct PPB_Flash { |
| // message loop (e.g., when displaying context menus), but Pepper provides |
| // only an asynchronous call. After performing that asynchronous call, call |
| // |RunMessageLoop()|. In the callback, call |QuitMessageLoop()|. |
| - void (*RunMessageLoop)(); |
| + void (*RunMessageLoop)(PP_Instance instance); |
|
viettrungluu
2011/02/08 18:18:09
Side comment: We should probably make the test API
piman
2011/02/15 02:11:22
Done.
|
| // Posts a quit message for the outermost nested message loop. Use this to |
| // exit and return back to the caller after you call RunMessageLoop. |
| - void (*QuitMessageLoop)(); |
| + void (*QuitMessageLoop)(PP_Instance instance); |
| }; |
| // PPB_Flash_NetConnector ------------------------------------------------------ |