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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorTraceEvents.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/InspectorTraceEvents.cpp
diff --git a/third_party/WebKit/Source/core/inspector/InspectorTraceEvents.cpp b/third_party/WebKit/Source/core/inspector/InspectorTraceEvents.cpp
index 1481a91e9a934dbbfbbd234ec868e14438f32018..752be0b277519efebdbeb296f0d2f7b288c14f39 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorTraceEvents.cpp
+++ b/third_party/WebKit/Source/core/inspector/InspectorTraceEvents.cpp
@@ -315,7 +315,7 @@ const char* PseudoTypeToString(CSSSelector::PseudoType pseudo_type) {
#undef DEFINE_STRING_MAPPING
}
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return "";
}
@@ -568,7 +568,7 @@ std::unique_ptr<TracedValue> InspectorLayoutEvent::EndData(
CreateQuad(value.get(), "root", quads[0]);
SetGeneratingNodeInfo(value.get(), root_for_this_layout, "rootNode");
} else {
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
return value;
}

Powered by Google App Engine
This is Rietveld 408576698