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

Unified Diff: third_party/WebKit/Source/platform/scroll/ScrollTypes.h

Issue 2849903002: Replace ASSERT_NOT_REACHED with NOTREACHED in platform/ (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/platform/scroll/ScrollTypes.h
diff --git a/third_party/WebKit/Source/platform/scroll/ScrollTypes.h b/third_party/WebKit/Source/platform/scroll/ScrollTypes.h
index 8971c625bc9a2faa97c32856ce65130ac0704f7e..63a564a53903fd834a80933e7d51ab4ccdd51c4f 100644
--- a/third_party/WebKit/Source/platform/scroll/ScrollTypes.h
+++ b/third_party/WebKit/Source/platform/scroll/ScrollTypes.h
@@ -142,7 +142,7 @@ inline ScrollDirectionPhysical ToPhysicalDirection(ScrollDirection direction,
case kScrollRightIgnoringWritingMode:
return kScrollRight;
default:
- ASSERT_NOT_REACHED();
+ NOTREACHED();
break;
}
return kScrollUp;
@@ -159,7 +159,7 @@ inline ScrollDirection ToScrollDirection(ScrollDirectionPhysical direction) {
case kScrollRight:
return kScrollRightIgnoringWritingMode;
default:
- ASSERT_NOT_REACHED();
+ NOTREACHED();
break;
}
return kScrollUpIgnoringWritingMode;

Powered by Google App Engine
This is Rietveld 408576698