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

Side by Side Diff: Source/modules/webaudio/DelayProcessor.h

Issue 20300002: Fix trailing whitespace in .cpp, .h, and .idl files (ex. Source/core) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « Source/modules/webaudio/DelayDSPKernel.h ('k') | Source/modules/webaudio/DelayProcessor.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010, Google Inc. All rights reserved. 2 * Copyright (C) 2010, 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 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 16 matching lines...) Expand all
27 27
28 #include "core/platform/audio/AudioDSPKernelProcessor.h" 28 #include "core/platform/audio/AudioDSPKernelProcessor.h"
29 #include "modules/webaudio/AudioParam.h" 29 #include "modules/webaudio/AudioParam.h"
30 30
31 #include "wtf/PassOwnPtr.h" 31 #include "wtf/PassOwnPtr.h"
32 #include "wtf/RefPtr.h" 32 #include "wtf/RefPtr.h"
33 33
34 namespace WebCore { 34 namespace WebCore {
35 35
36 class AudioDSPKernel; 36 class AudioDSPKernel;
37 37
38 class DelayProcessor : public AudioDSPKernelProcessor { 38 class DelayProcessor : public AudioDSPKernelProcessor {
39 public: 39 public:
40 DelayProcessor(AudioContext*, float sampleRate, unsigned numberOfChannels, d ouble maxDelayTime); 40 DelayProcessor(AudioContext*, float sampleRate, unsigned numberOfChannels, d ouble maxDelayTime);
41 virtual ~DelayProcessor(); 41 virtual ~DelayProcessor();
42 42
43 virtual PassOwnPtr<AudioDSPKernel> createKernel(); 43 virtual PassOwnPtr<AudioDSPKernel> createKernel();
44 44
45 AudioParam* delayTime() const { return m_delayTime.get(); } 45 AudioParam* delayTime() const { return m_delayTime.get(); }
46 46
47 double maxDelayTime() { return m_maxDelayTime; } 47 double maxDelayTime() { return m_maxDelayTime; }
48 private: 48 private:
49 49
50 RefPtr<AudioParam> m_delayTime; 50 RefPtr<AudioParam> m_delayTime;
51 double m_maxDelayTime; 51 double m_maxDelayTime;
52 }; 52 };
53 53
54 } // namespace WebCore 54 } // namespace WebCore
55 55
56 #endif // DelayProcessor_h 56 #endif // DelayProcessor_h
OLDNEW
« no previous file with comments | « Source/modules/webaudio/DelayDSPKernel.h ('k') | Source/modules/webaudio/DelayProcessor.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698