| Index: ppapi/examples/enumerate_devices/enumerate_devices.cc
|
| diff --git a/ppapi/examples/enumerate_devices/enumerate_devices.cc b/ppapi/examples/enumerate_devices/enumerate_devices.cc
|
| index 383a0e5280a07d47be2219f70e4b182c74cad965..4118a1c6be9783752af7715f77e4354a8e3e5448 100644
|
| --- a/ppapi/examples/enumerate_devices/enumerate_devices.cc
|
| +++ b/ppapi/examples/enumerate_devices/enumerate_devices.cc
|
| @@ -3,16 +3,18 @@
|
| // found in the LICENSE file.
|
|
|
| #include <assert.h>
|
| +#include <stddef.h>
|
| +#include <stdint.h>
|
| #include <string.h>
|
|
|
| #include <vector>
|
|
|
| #include "ppapi/c/dev/ppb_video_capture_dev.h"
|
| #include "ppapi/c/pp_errors.h"
|
| +#include "ppapi/cpp/completion_callback.h"
|
| #include "ppapi/cpp/dev/device_ref_dev.h"
|
| -#include "ppapi/cpp/dev/video_capture_dev.h"
|
| #include "ppapi/cpp/dev/video_capture_client_dev.h"
|
| -#include "ppapi/cpp/completion_callback.h"
|
| +#include "ppapi/cpp/dev/video_capture_dev.h"
|
| #include "ppapi/cpp/instance.h"
|
| #include "ppapi/cpp/module.h"
|
| #include "ppapi/cpp/private/flash.h"
|
|
|