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

Unified Diff: third_party/WebKit/Source/core/svg/animation/SMILTimeContainer.h

Issue 2640163004: Replace ENABLE(ASSERT) with DCHECK_IS_ON(). (Closed)
Patch Set: m_domTreeVersion initialization Created 3 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/svg/animation/SMILTimeContainer.h
diff --git a/third_party/WebKit/Source/core/svg/animation/SMILTimeContainer.h b/third_party/WebKit/Source/core/svg/animation/SMILTimeContainer.h
index 1b302767713fb1129b0c4b59aa0127b3e0657480..dd8fb534392c525a63a1084e09004b27e59da3c7 100644
--- a/third_party/WebKit/Source/core/svg/animation/SMILTimeContainer.h
+++ b/third_party/WebKit/Source/core/svg/animation/SMILTimeContainer.h
@@ -143,8 +143,8 @@ class SMILTimeContainer : public GarbageCollectedFinalized<SMILTimeContainer> {
Member<SVGSVGElement> m_ownerSVGElement;
-#if ENABLE(ASSERT)
- bool m_preventScheduledAnimationsChanges;
+#if DCHECK_IS_ON()
+ bool m_preventScheduledAnimationsChanges = false;
#endif
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698