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

Unified Diff: third_party/WebKit/Source/web/WebLocalFrameImpl.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/WebLocalFrameImpl.cpp
diff --git a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
index bdec86a6baa6ef09da94d8db065c08ffa81b2ef9..01d196b87b87c04697e04f98ba00f1cb07eba046 100644
--- a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
+++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
@@ -469,7 +469,7 @@ public:
void computePageRectsWithPageSize(const FloatSize& pageSizeInPixels) override
{
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
protected:
@@ -565,7 +565,7 @@ bool WebLocalFrameImpl::isWebRemoteFrame() const
WebRemoteFrame* WebLocalFrameImpl::toWebRemoteFrame()
{
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return 0;
}
@@ -611,7 +611,7 @@ WebVector<WebIconURL> WebLocalFrameImpl::iconURLs(int iconTypesMask) const
void WebLocalFrameImpl::setRemoteWebLayer(WebLayer* webLayer)
{
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
void WebLocalFrameImpl::setContentSettingsClient(WebContentSettingsClient* contentSettingsClient)
@@ -770,7 +770,7 @@ void WebLocalFrameImpl::addMessageToConsole(const WebConsoleMessage& message)
webCoreMessageLevel = ErrorMessageLevel;
break;
default:
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return;
}
« no previous file with comments | « third_party/WebKit/Source/web/WebInputEventConversion.cpp ('k') | third_party/WebKit/Source/web/WebPerformance.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698