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

Side by Side Diff: ppapi/examples/audio_encode/audio_encode.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/audio.cc ('k') | ppapi/examples/audio_input/audio_input.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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 <map> 9 #include <map>
9 #include <string> 10 #include <string>
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/audio_encoder.h" 14 #include "ppapi/cpp/audio_encoder.h"
14 #include "ppapi/cpp/instance.h" 15 #include "ppapi/cpp/instance.h"
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after
374 } // namespace 375 } // namespace
375 376
376 namespace pp { 377 namespace pp {
377 378
378 // Factory function for your specialization of the Module object. 379 // Factory function for your specialization of the Module object.
379 Module* CreateModule() { 380 Module* CreateModule() {
380 return new AudioEncoderModule(); 381 return new AudioEncoderModule();
381 } 382 }
382 383
383 } // namespace pp 384 } // namespace pp
OLDNEW
« no previous file with comments | « ppapi/examples/audio/audio.cc ('k') | ppapi/examples/audio_input/audio_input.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698