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

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: Fix compilation. 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 86581ceb070c4bd71c86064dd3e84f0544db37c9..38c557e43c4cd4071ae124ca8f110a2d658f5da5 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