commit | e029c4134fbfdecd6664d152c2d53b605aba6224 | [log] [tgz] |
---|---|---|
author | avi <[email protected]> | Wed Dec 23 06:45:22 2015 |
committer | Commit bot <[email protected]> | Wed Dec 23 06:46:20 2015 |
tree | f9f38311b7c63a7e5eaba902c02aed0e1bb58cc9 | |
parent | 02cefdcaff9d73c0f72033ee9d2d79e7f0cf8383 [diff] [blame] |
Switch to standard integer types in ppapi/. BUG=138542 [email protected] NOPRESUBMIT=true Review URL: https://codereview.chromium.org/1548813002 Cr-Commit-Position: refs/heads/master@{#366718}
diff --git a/ppapi/proxy/audio_buffer_resource.h b/ppapi/proxy/audio_buffer_resource.h index 8f1e22f..e447917 100644 --- a/ppapi/proxy/audio_buffer_resource.h +++ b/ppapi/proxy/audio_buffer_resource.h
@@ -5,8 +5,10 @@ #ifndef PPAPI_PROXY_AUDIO_BUFFER_RESOURCE_H_ #define PPAPI_PROXY_AUDIO_BUFFER_RESOURCE_H_ -#include "base/basictypes.h" +#include <stdint.h> + #include "base/compiler_specific.h" +#include "base/macros.h" #include "ppapi/proxy/ppapi_proxy_export.h" #include "ppapi/shared_impl/resource.h" #include "ppapi/thunk/ppb_audio_buffer_api.h"