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

Unified Diff: third_party/WebKit/Source/core/css/MediaQueryEvaluator.cpp

Issue 2755493004: Replace ASSERT, ASSERT_NOT_REACHED, and RELEASE_ASSERT in core/css/ (Closed)
Patch Set: All windows error are Resolved now. Created 3 years, 9 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/css/MediaQueryEvaluator.cpp
diff --git a/third_party/WebKit/Source/core/css/MediaQueryEvaluator.cpp b/third_party/WebKit/Source/core/css/MediaQueryEvaluator.cpp
index 4b8715b0941350763397a7ac582c2bc564eb574e..823b91f198e5fbae00015ce26ed5b2c93cbf91e4 100644
--- a/third_party/WebKit/Source/core/css/MediaQueryEvaluator.cpp
+++ b/third_party/WebKit/Source/core/css/MediaQueryEvaluator.cpp
@@ -269,7 +269,7 @@ static bool displayModeMediaFeatureEval(const MediaQueryExpValue& value,
case CSSValueBrowser:
return mode == WebDisplayModeBrowser;
default:
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return false;
}
}
@@ -664,7 +664,7 @@ static bool anyHoverMediaFeatureEval(const MediaQueryExpValue& value,
case CSSValueHover:
return availableHoverTypes & HoverTypeHover;
default:
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return false;
}
}
@@ -726,7 +726,7 @@ static bool anyPointerMediaFeatureEval(const MediaQueryExpValue& value,
case CSSValueNone:
return availablePointers & PointerTypeNone;
default:
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return false;
}
}
« no previous file with comments | « third_party/WebKit/Source/core/css/FontSize.cpp ('k') | third_party/WebKit/Source/core/css/MediaQueryExp.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698