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

Unified Diff: third_party/WebKit/Source/core/frame/csp/ContentSecurityPolicy.cpp

Issue 2846273002: Replace ASSERT_NOT_REACHED with NOTREACHED in core/frame (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
« no previous file with comments | « third_party/WebKit/Source/core/frame/VisualViewport.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/frame/csp/ContentSecurityPolicy.cpp
diff --git a/third_party/WebKit/Source/core/frame/csp/ContentSecurityPolicy.cpp b/third_party/WebKit/Source/core/frame/csp/ContentSecurityPolicy.cpp
index 8fe15e71c5e653b5d06cf5bf93180951b28fdc4b..399514c495d73f0549d76331e85dcacc51b585c1 100644
--- a/third_party/WebKit/Source/core/frame/csp/ContentSecurityPolicy.cpp
+++ b/third_party/WebKit/Source/core/frame/csp/ContentSecurityPolicy.cpp
@@ -145,7 +145,7 @@ static UseCounter::Feature GetUseCounterType(
case kContentSecurityPolicyHeaderTypeReport:
return UseCounter::kContentSecurityPolicyReportOnly;
}
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return UseCounter::kNumberOfFeatures;
}
@@ -866,7 +866,7 @@ bool ContentSecurityPolicy::AllowRequest(
case WebURLRequest::kRequestContextUnspecified:
return true;
}
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return true;
}
« no previous file with comments | « third_party/WebKit/Source/core/frame/VisualViewport.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698