OLD | NEW |
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 Loading... |
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 |
OLD | NEW |