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

Side by Side Diff: ppapi/examples/media_stream_audio/media_stream_audio.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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include <stdint.h>
5 #include <stdlib.h> 6 #include <stdlib.h>
6 #include <string.h> 7 #include <string.h>
7 8
8 #include <algorithm> 9 #include <algorithm>
9 #include <limits> 10 #include <limits>
10 #include <vector> 11 #include <vector>
11 12
12 #include "ppapi/cpp/audio_buffer.h" 13 #include "ppapi/cpp/audio_buffer.h"
13 #include "ppapi/cpp/graphics_2d.h" 14 #include "ppapi/cpp/graphics_2d.h"
14 #include "ppapi/cpp/image_data.h" 15 #include "ppapi/cpp/image_data.h"
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 } // namespace 216 } // namespace
216 217
217 namespace pp { 218 namespace pp {
218 219
219 // Factory function for your specialization of the Module object. 220 // Factory function for your specialization of the Module object.
220 Module* CreateModule() { 221 Module* CreateModule() {
221 return new MediaStreamAudioModule(); 222 return new MediaStreamAudioModule();
222 } 223 }
223 224
224 } // namespace pp 225 } // namespace pp
OLDNEW
« no previous file with comments | « ppapi/examples/input/pointer_event_input.cc ('k') | ppapi/examples/media_stream_video/media_stream_video.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698