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

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

Issue 2846283002: Replace ASSERT_NOT_REACHED with NOTREACHED in the rest of core/ (Closed)
Patch Set: rebase 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
Index: third_party/WebKit/Source/core/inspector/InspectorCSSAgent.cpp
diff --git a/third_party/WebKit/Source/core/inspector/InspectorCSSAgent.cpp b/third_party/WebKit/Source/core/inspector/InspectorCSSAgent.cpp
index 8453a752e1333bdad12b68ff63760fb63cdc47f1..581e0a26e0acd666583a8cbaa2d601118080486e 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorCSSAgent.cpp
+++ b/third_party/WebKit/Source/core/inspector/InspectorCSSAgent.cpp
@@ -486,7 +486,7 @@ class InspectorCSSAgent::ModifyRuleAction final
return style_sheet_->SetKeyframeKey(new_range_, old_text_, nullptr,
nullptr, exception_state);
default:
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
return false;
}
@@ -510,7 +510,7 @@ class InspectorCSSAgent::ModifyRuleAction final
old_range_, new_text_, &new_range_, &old_text_, exception_state);
break;
default:
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
return css_rule_;
}

Powered by Google App Engine
This is Rietveld 408576698