Chromium Code Reviews| Index: ppapi/cpp/private/flash.h |
| diff --git a/ppapi/cpp/private/flash.h b/ppapi/cpp/private/flash.h |
| index dc5f92907c22a409c36c31f8a63acec14537a552..92ee95768a50e2ec7620775698e7ed6ea50159d1 100644 |
| --- a/ppapi/cpp/private/flash.h |
| +++ b/ppapi/cpp/private/flash.h |
| @@ -6,6 +6,7 @@ |
| #define PPAPI_CPP_PRIVATE_FLASH_H_ |
| #include <string> |
| +#include <vector> |
| #include "ppapi/c/private/ppb_flash.h" |
| #include "ppapi/c/pp_stdint.h" |
| @@ -15,6 +16,7 @@ struct PP_Point; |
| namespace pp { |
| +class DeviceRef_Dev; |
| class FontDescription_Dev; |
| class ImageData; |
| class InstanceHandle; |
| @@ -23,6 +25,7 @@ class Point; |
| class Rect; |
| class URLRequestInfo; |
| class Var; |
| +class VideoCapture_Dev; |
| namespace flash { |
| @@ -63,6 +66,9 @@ class Flash { |
| static bool SetCrashData(const InstanceHandle& instance, |
| PP_FlashCrashKey key, |
| const pp::Var& value); |
| + static int32_t EnumerateVideoDevicesSync(const InstanceHandle& instance, |
|
yzshen1
2012/10/10 18:17:39
Please use the same name as the c interface.
raymes
2012/10/11 18:39:26
Done.
|
| + const VideoCapture_Dev& video_capture, |
| + std::vector<DeviceRef_Dev>* devices_out); |
| // PPB_Flash_Print. |
| static bool InvokePrinting(const InstanceHandle& instance); |