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

Unified Diff: Source/modules/webaudio/AudioNodeInput.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/AudioNodeInput.h
diff --git a/Source/modules/webaudio/AudioNodeInput.h b/Source/modules/webaudio/AudioNodeInput.h
index 294f170fbd15947c98888b1dd8e5238a001167c7..ae2389bebc02b33d2108bb995cb557c3e2831697 100644
--- a/Source/modules/webaudio/AudioNodeInput.h
+++ b/Source/modules/webaudio/AudioNodeInput.h
@@ -45,7 +45,9 @@ public:
// AudioSummingJunction
virtual void trace(Visitor*) OVERRIDE;
+#if !ENABLE(OILPAN)
virtual bool canUpdateState() OVERRIDE { return !node().isMarkedForDeletion(); }
+#endif
virtual void didUpdate() OVERRIDE;
// Can be called from any thread.

Powered by Google App Engine
This is Rietveld 408576698