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

Unified Diff: third_party/WebKit/Source/core/events/PopStateEvent.h

Issue 2270293002: Replace ASSERT*() with DCHECK*() in core/events/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: isUnreachableNode -> checkReachableNode Created 4 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: third_party/WebKit/Source/core/events/PopStateEvent.h
diff --git a/third_party/WebKit/Source/core/events/PopStateEvent.h b/third_party/WebKit/Source/core/events/PopStateEvent.h
index 1a2e100c8b53e226a686e0e6ee29efe8b12c8f01..9dcc16dee714b8dcbbd39aa67a70abf9c0af8bc0 100644
--- a/third_party/WebKit/Source/core/events/PopStateEvent.h
+++ b/third_party/WebKit/Source/core/events/PopStateEvent.h
@@ -48,7 +48,7 @@ public:
SerializedScriptValue* serializedState() const { return m_serializedState.get(); }
void setSerializedState(PassRefPtr<SerializedScriptValue> state)
{
- ASSERT(!m_serializedState);
+ DCHECK(!m_serializedState);
m_serializedState = state;
}
History* history() const { return m_history.get(); }

Powered by Google App Engine
This is Rietveld 408576698