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

Side by Side Diff: third_party/WebKit/Source/modules/webaudio/AudioNodeOutput.h

Issue 1557363002: Remove the WEB_AUDIO compile time flag (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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) 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 13 matching lines...) Expand all
24 24
25 #ifndef AudioNodeOutput_h 25 #ifndef AudioNodeOutput_h
26 #define AudioNodeOutput_h 26 #define AudioNodeOutput_h
27 27
28 #include "modules/webaudio/AudioNode.h" 28 #include "modules/webaudio/AudioNode.h"
29 #include "modules/webaudio/AudioParam.h" 29 #include "modules/webaudio/AudioParam.h"
30 #include "platform/audio/AudioBus.h" 30 #include "platform/audio/AudioBus.h"
31 #include "wtf/HashSet.h" 31 #include "wtf/HashSet.h"
32 #include "wtf/RefPtr.h" 32 #include "wtf/RefPtr.h"
33 33
34 #if ENABLE(WEB_AUDIO)
35
36 namespace blink { 34 namespace blink {
37 35
38 class AudioNodeInput; 36 class AudioNodeInput;
39 37
40 // AudioNodeOutput represents a single output for an AudioNode. 38 // AudioNodeOutput represents a single output for an AudioNode.
41 // It may be connected to one or more AudioNodeInputs. 39 // It may be connected to one or more AudioNodeInputs.
42 class AudioNodeOutput final { 40 class AudioNodeOutput final {
43 USING_FAST_MALLOC(AudioNodeOutput); 41 USING_FAST_MALLOC(AudioNodeOutput);
44 public: 42 public:
45 // It's OK to pass 0 for numberOfChannels in which case 43 // It's OK to pass 0 for numberOfChannels in which case
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 unsigned m_renderingFanOutCount; 158 unsigned m_renderingFanOutCount;
161 unsigned m_renderingParamFanOutCount; 159 unsigned m_renderingParamFanOutCount;
162 160
163 // This collection of raw pointers is safe because they are retained by 161 // This collection of raw pointers is safe because they are retained by
164 // AudioParam objects retained by m_connectedParams of the owner AudioNode. 162 // AudioParam objects retained by m_connectedParams of the owner AudioNode.
165 HashSet<AudioParamHandler*> m_params; 163 HashSet<AudioParamHandler*> m_params;
166 }; 164 };
167 165
168 } // namespace blink 166 } // namespace blink
169 167
170 #endif // ENABLE(WEB_AUDIO)
171
172 #endif // AudioNodeOutput_h 168 #endif // AudioNodeOutput_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698