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

Unified Diff: content/browser/frame_host/navigation_controller_impl.cc

Issue 2561963002: base: Remove the string logging from CHECK(). (Closed)
Patch Set: checkstring: rebase Created 4 years 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: content/browser/frame_host/navigation_controller_impl.cc
diff --git a/content/browser/frame_host/navigation_controller_impl.cc b/content/browser/frame_host/navigation_controller_impl.cc
index c87e636b6e4410b74cd94ed4f56d4e8745c71817..6550b0da15f946b08ae1d67de862fdf6fde84174 100644
--- a/content/browser/frame_host/navigation_controller_impl.cc
+++ b/content/browser/frame_host/navigation_controller_impl.cc
@@ -1593,7 +1593,8 @@ void NavigationControllerImpl::SetSessionStorageNamespace(
static_cast<SessionStorageNamespaceImpl*>(
session_storage_namespace)))
.second;
- CHECK(successful_insert) << "Cannot replace existing SessionStorageNamespace";
+ // Cannot replace existing SessionStorageNamespace
+ CHECK(successful_insert);
}
bool NavigationControllerImpl::IsUnmodifiedBlankTab() const {

Powered by Google App Engine
This is Rietveld 408576698