summaryrefslogtreecommitdiffstats
path: root/ppapi/examples/2d
diff options
context:
space:
mode:
Diffstat (limited to 'ppapi/examples/2d')
-rw-r--r--ppapi/examples/2d/graphics_2d_example.c1
-rw-r--r--ppapi/examples/2d/paint_manager_example.cc3
-rw-r--r--ppapi/examples/2d/scroll.cc1
3 files changed, 5 insertions, 0 deletions
diff --git a/ppapi/examples/2d/graphics_2d_example.c b/ppapi/examples/2d/graphics_2d_example.c
index 0f32617..98afadb 100644
--- a/ppapi/examples/2d/graphics_2d_example.c
+++ b/ppapi/examples/2d/graphics_2d_example.c
@@ -2,6 +2,7 @@
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
+#include <stdint.h>
#include <stdlib.h>
#include <string.h>
diff --git a/ppapi/examples/2d/paint_manager_example.cc b/ppapi/examples/2d/paint_manager_example.cc
index c8d6a79..3711ade 100644
--- a/ppapi/examples/2d/paint_manager_example.cc
+++ b/ppapi/examples/2d/paint_manager_example.cc
@@ -2,6 +2,9 @@
// 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 <algorithm>
#include "ppapi/c/pp_input_event.h"
diff --git a/ppapi/examples/2d/scroll.cc b/ppapi/examples/2d/scroll.cc
index 506129c..fc3494cb 100644
--- a/ppapi/examples/2d/scroll.cc
+++ b/ppapi/examples/2d/scroll.cc
@@ -3,6 +3,7 @@
// found in the LICENSE file.
#include <math.h>
+#include <stdint.h>
#include <algorithm>