| Index: Source/modules/webaudio/AudioNode.h
|
| diff --git a/Source/modules/webaudio/AudioNode.h b/Source/modules/webaudio/AudioNode.h
|
| index fc67044cf42d9c431d917dc1872598922572b34b..c41a5c8885cb2fd142f2f7307588b2264e465b0e 100644
|
| --- a/Source/modules/webaudio/AudioNode.h
|
| +++ b/Source/modules/webaudio/AudioNode.h
|
| @@ -158,7 +158,9 @@ public:
|
| static void printNodeCounts();
|
| #endif
|
|
|
| +#if !ENABLE(OILPAN)
|
| bool isMarkedForDeletion() const { return m_isMarkedForDeletion; }
|
| +#endif
|
|
|
| // tailTime() is the length of time (not counting latency time) where non-zero output may occur after continuous silent input.
|
| virtual double tailTime() const = 0;
|
| @@ -225,7 +227,9 @@ private:
|
| #endif
|
| volatile int m_connectionRefCount;
|
|
|
| +#if !ENABLE(OILPAN)
|
| bool m_isMarkedForDeletion;
|
| +#endif
|
| bool m_isDisabled;
|
|
|
| #if DEBUG_AUDIONODE_REFERENCES
|
|
|