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

Side by Side Diff: ppapi/examples/audio_input/audio_input.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 4 years, 12 months 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
« no previous file with comments | « ppapi/examples/audio_encode/audio_encode.cc ('k') | ppapi/examples/compositor/compositor.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 <stddef.h>
6 #include <stdint.h>
5 #include <stdlib.h> 7 #include <stdlib.h>
6 #include <string.h> 8 #include <string.h>
7 9
8 #include <algorithm> 10 #include <algorithm>
9 #include <limits> 11 #include <limits>
10 #include <vector> 12 #include <vector>
11 13
12 #include "ppapi/cpp/audio_config.h" 14 #include "ppapi/cpp/audio_config.h"
13 #include "ppapi/cpp/dev/audio_input_dev.h" 15 #include "ppapi/cpp/dev/audio_input_dev.h"
14 #include "ppapi/cpp/dev/device_ref_dev.h" 16 #include "ppapi/cpp/dev/device_ref_dev.h"
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after
341 }; 343 };
342 344
343 namespace pp { 345 namespace pp {
344 346
345 // Factory function for your specialization of the Module object. 347 // Factory function for your specialization of the Module object.
346 Module* CreateModule() { 348 Module* CreateModule() {
347 return new MyModule(); 349 return new MyModule();
348 } 350 }
349 351
350 } // namespace pp 352 } // namespace pp
OLDNEW
« no previous file with comments | « ppapi/examples/audio_encode/audio_encode.cc ('k') | ppapi/examples/compositor/compositor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698