Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(203)

Unified Diff: ppapi/examples/enumerate_devices/enumerate_devices.cc

Issue 1548813002: Switch to standard integer types in ppapi/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixes Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ppapi/examples/crxfs/crxfs.cc ('k') | ppapi/examples/file_chooser/file_chooser.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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"
« no previous file with comments | « ppapi/examples/crxfs/crxfs.cc ('k') | ppapi/examples/file_chooser/file_chooser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698