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

Unified Diff: third_party/WebKit/Source/web/PopupMenuImpl.cpp

Issue 1878493002: ASSERT_NOT_REACHED() -> NOTREACHED() in web. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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/web/PopupMenuImpl.cpp
diff --git a/third_party/WebKit/Source/web/PopupMenuImpl.cpp b/third_party/WebKit/Source/web/PopupMenuImpl.cpp
index 8334670156b65d69bd9d4230d08511e375844807..3d2a8dd746e0bef50475ee1b5e0d9219332abd8b 100644
--- a/third_party/WebKit/Source/web/PopupMenuImpl.cpp
+++ b/third_party/WebKit/Source/web/PopupMenuImpl.cpp
@@ -52,7 +52,7 @@ const char* fontWeightToString(FontWeight weight)
case FontWeight900:
return "900";
}
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return nullptr;
}
@@ -64,7 +64,7 @@ const char* fontVariantToString(FontVariant variant)
case FontVariantSmallCaps:
return "small-caps";
}
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return nullptr;
}
@@ -80,7 +80,7 @@ const char* fontStyleToString(FontStyle style)
case FontStyleItalic:
return "italic";
}
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return nullptr;
}
@@ -96,7 +96,7 @@ const char* textTransformToString(ETextTransform transform)
case TTNONE:
return "none";
}
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return "";
}
« no previous file with comments | « third_party/WebKit/Source/web/PageWidgetDelegate.cpp ('k') | third_party/WebKit/Source/web/WebDOMFileSystem.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698