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

Unified Diff: third_party/WebKit/Source/core/editing/Editor.h

Issue 1878473002: ASSERT -> DCHECK in core/editing. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Output info for some DCHECKs, add TODOs. Created 4 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/core/editing/Editor.h
diff --git a/third_party/WebKit/Source/core/editing/Editor.h b/third_party/WebKit/Source/core/editing/Editor.h
index 2441db90b5c8c31a22408abb2a571390c9469dad..2622bb8e675c99014d946bdd0bb25b2498b1ab4f 100644
--- a/third_party/WebKit/Source/core/editing/Editor.h
+++ b/third_party/WebKit/Source/core/editing/Editor.h
@@ -142,7 +142,7 @@ public:
private:
LocalFrame& frame() const
{
- ASSERT(m_frame);
+ DCHECK(m_frame);
return *m_frame;
}
@@ -261,7 +261,7 @@ private:
LocalFrame& frame() const
{
- ASSERT(m_frame);
+ DCHECK(m_frame);
return *m_frame;
}

Powered by Google App Engine
This is Rietveld 408576698