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