| Index: ppapi/examples/video_capture/video_capture.cc
|
| diff --git a/ppapi/examples/video_capture/video_capture.cc b/ppapi/examples/video_capture/video_capture.cc
|
| index b95fcace928b9ee31fffedc2ab75e9c73d4d4be6..9a0a32ddc1c49ee636ef5db0bf457e2bbeabe2a8 100644
|
| --- a/ppapi/examples/video_capture/video_capture.cc
|
| +++ b/ppapi/examples/video_capture/video_capture.cc
|
| @@ -2,6 +2,8 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +#include <stddef.h>
|
| +#include <stdint.h>
|
| #include <stdlib.h>
|
| #include <string.h>
|
|
|
| @@ -11,13 +13,13 @@
|
| #include "ppapi/c/dev/ppb_video_capture_dev.h"
|
| #include "ppapi/c/pp_errors.h"
|
| #include "ppapi/c/ppb_opengles2.h"
|
| +#include "ppapi/cpp/completion_callback.h"
|
| #include "ppapi/cpp/dev/buffer_dev.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/graphics_3d_client.h"
|
| +#include "ppapi/cpp/dev/video_capture_dev.h"
|
| #include "ppapi/cpp/graphics_3d.h"
|
| +#include "ppapi/cpp/graphics_3d_client.h"
|
| #include "ppapi/cpp/instance.h"
|
| #include "ppapi/cpp/module.h"
|
| #include "ppapi/cpp/rect.h"
|
|
|