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