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

Unified Diff: third_party/WebKit/Source/web/ChromeClientImpl.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
« no previous file with comments | « no previous file | third_party/WebKit/Source/web/DateTimeChooserImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/web/ChromeClientImpl.cpp
diff --git a/third_party/WebKit/Source/web/ChromeClientImpl.cpp b/third_party/WebKit/Source/web/ChromeClientImpl.cpp
index 821b3de34311df44b17143392eb45ab639dfafff..2210928659e4074606bc73b74029c8499211d3cc 100644
--- a/third_party/WebKit/Source/web/ChromeClientImpl.cpp
+++ b/third_party/WebKit/Source/web/ChromeClientImpl.cpp
@@ -122,9 +122,9 @@ const char* dialogTypeToString(ChromeClient::DialogType dialogType)
case ChromeClient::PromptDialog:
return "prompt";
case ChromeClient::HTMLDialog:
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return "";
}
@@ -140,9 +140,9 @@ const char* dismissalTypeToString(Document::PageDismissalType dismissalType)
case Document::UnloadDismissal:
return "unload";
case Document::NoDismissal:
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return "";
}
« no previous file with comments | « no previous file | third_party/WebKit/Source/web/DateTimeChooserImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698