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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorTaskRunner.cpp

Issue 2458003002: Remove ASSERT_WITH_SECURITY_IMPLICATION. (Closed)
Patch Set: Minor formatting fix Created 4 years, 2 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/inspector/InspectorTaskRunner.cpp
diff --git a/third_party/WebKit/Source/core/inspector/InspectorTaskRunner.cpp b/third_party/WebKit/Source/core/inspector/InspectorTaskRunner.cpp
index d3602dd3364566d8c2654603a27157bf549e5191..218dba281826652b2019c29866dd611450c3da2a 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorTaskRunner.cpp
+++ b/third_party/WebKit/Source/core/inspector/InspectorTaskRunner.cpp
@@ -45,7 +45,7 @@ std::unique_ptr<InspectorTaskRunner::Task> InspectorTaskRunner::takeNextTask(
if (m_killed || timedOut)
return nullptr;
- ASSERT_WITH_SECURITY_IMPLICATION(!m_queue.isEmpty());
+ SECURITY_DCHECK(!m_queue.isEmpty());
return m_queue.takeFirst();
}

Powered by Google App Engine
This is Rietveld 408576698