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

Side by Side Diff: third_party/WebKit/Source/platform/audio/SincResampler.h

Issue 2795943002: Rewrite references to "wtf/" to "platform/wtf/" in platform/audio. (Closed)
Patch Set: Created 3 years, 8 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 14 matching lines...) Expand all
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */ 27 */
28 28
29 #ifndef SincResampler_h 29 #ifndef SincResampler_h
30 #define SincResampler_h 30 #define SincResampler_h
31 31
32 #include "platform/PlatformExport.h" 32 #include "platform/PlatformExport.h"
33 #include "platform/audio/AudioArray.h" 33 #include "platform/audio/AudioArray.h"
34 #include "platform/audio/AudioSourceProvider.h" 34 #include "platform/audio/AudioSourceProvider.h"
35 #include "wtf/Allocator.h" 35 #include "platform/wtf/Allocator.h"
36 #include "wtf/Noncopyable.h" 36 #include "platform/wtf/Noncopyable.h"
37 37
38 namespace blink { 38 namespace blink {
39 39
40 // SincResampler is a high-quality sample-rate converter. 40 // SincResampler is a high-quality sample-rate converter.
41 41
42 class PLATFORM_EXPORT SincResampler { 42 class PLATFORM_EXPORT SincResampler {
43 USING_FAST_MALLOC(SincResampler); 43 USING_FAST_MALLOC(SincResampler);
44 WTF_MAKE_NONCOPYABLE(SincResampler); 44 WTF_MAKE_NONCOPYABLE(SincResampler);
45 45
46 public: 46 public:
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 // resampler. 94 // resampler.
95 AudioSourceProvider* m_sourceProvider; 95 AudioSourceProvider* m_sourceProvider;
96 96
97 // The buffer is primed once at the very beginning of processing. 97 // The buffer is primed once at the very beginning of processing.
98 bool m_isBufferPrimed; 98 bool m_isBufferPrimed;
99 }; 99 };
100 100
101 } // namespace blink 101 } // namespace blink
102 102
103 #endif // SincResampler_h 103 #endif // SincResampler_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698