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

Side by Side Diff: third_party/WebKit/Source/modules/webaudio/AudioSummingJunction.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) 2012, Google Inc. All rights reserved. 2 * Copyright (C) 2012, 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 12 matching lines...) Expand all
23 */ 23 */
24 24
25 #ifndef AudioSummingJunction_h 25 #ifndef AudioSummingJunction_h
26 #define AudioSummingJunction_h 26 #define AudioSummingJunction_h
27 27
28 #include "platform/audio/AudioBus.h" 28 #include "platform/audio/AudioBus.h"
29 #include "platform/heap/Handle.h" 29 #include "platform/heap/Handle.h"
30 #include "wtf/HashSet.h" 30 #include "wtf/HashSet.h"
31 #include "wtf/Vector.h" 31 #include "wtf/Vector.h"
32 32
33 #if ENABLE(WEB_AUDIO)
34
35 namespace blink { 33 namespace blink {
36 34
37 class AudioNodeOutput; 35 class AudioNodeOutput;
38 class DeferredTaskHandler; 36 class DeferredTaskHandler;
39 37
40 // An AudioSummingJunction represents a point where zero, one, or more AudioNode Outputs connect. 38 // An AudioSummingJunction represents a point where zero, one, or more AudioNode Outputs connect.
41 39
42 class AudioSummingJunction { 40 class AudioSummingJunction {
43 public: 41 public:
44 virtual ~AudioSummingJunction(); 42 virtual ~AudioSummingJunction();
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 // These raw pointers are safe. Owner of this AudioSummingJunction has 80 // These raw pointers are safe. Owner of this AudioSummingJunction has
83 // strong references to owners of these AudioNodeOutput. 81 // strong references to owners of these AudioNodeOutput.
84 Vector<AudioNodeOutput*> m_renderingOutputs; 82 Vector<AudioNodeOutput*> m_renderingOutputs;
85 83
86 // m_renderingStateNeedUpdating keeps track if m_outputs is modified. 84 // m_renderingStateNeedUpdating keeps track if m_outputs is modified.
87 bool m_renderingStateNeedUpdating; 85 bool m_renderingStateNeedUpdating;
88 }; 86 };
89 87
90 } // namespace blink 88 } // namespace blink
91 89
92 #endif // ENABLE(WEB_AUDIO)
93
94 #endif // AudioSummingJunction_h 90 #endif // AudioSummingJunction_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698