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

Unified Diff: third_party/WebKit/Source/modules/accessibility/AXObject.h

Issue 2804383002: Replace ASSERT with DCHECK in modules/accessibility (Closed)
Patch Set: Created 3 years, 8 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/modules/accessibility/AXObject.h
diff --git a/third_party/WebKit/Source/modules/accessibility/AXObject.h b/third_party/WebKit/Source/modules/accessibility/AXObject.h
index 1c47ffff1790170946dfa0644d5311fe78e729b3..1b3db24e2ea9d83dbeeaac0d4fbac45b345fb342 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXObject.h
+++ b/third_party/WebKit/Source/modules/accessibility/AXObject.h
@@ -596,7 +596,7 @@ class MODULES_EXPORT AXObject : public GarbageCollectedFinalized<AXObject> {
// The AXObjectCacheImpl that owns this object, and its unique ID within this
// cache.
AXObjectCacheImpl& axObjectCache() const {
- ASSERT(m_axObjectCache);
+ DCHECK(m_axObjectCache);
return *m_axObjectCache;
}

Powered by Google App Engine
This is Rietveld 408576698