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

Unified Diff: Source/modules/webaudio/AudioNode.h

Issue 458923003: Remove AudioNode::isMarkedForDeletion from oilpan builds (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
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
« no previous file with comments | « no previous file | Source/modules/webaudio/AudioNode.cpp » ('j') | Source/modules/webaudio/AudioSummingJunction.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698