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

Unified Diff: ios/chrome/browser/signin/browser_state_data_remover.mm

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: ios/chrome/browser/signin/browser_state_data_remover.mm
diff --git a/ios/chrome/browser/signin/browser_state_data_remover.mm b/ios/chrome/browser/signin/browser_state_data_remover.mm
index 7a3ba5c81e575997b5204577a005b2f803830a10..f8dec627af5d2dfd56acf8a1e05d4a6445b12488 100644
--- a/ios/chrome/browser/signin/browser_state_data_remover.mm
+++ b/ios/chrome/browser/signin/browser_state_data_remover.mm
@@ -64,8 +64,8 @@ void BrowserStateDataRemover::NotifyWithDetails(
// Remove bookmarks once all browsing data was removed.
// Removal of browsing data waits for the bookmark model to be loaded, so
// there should be no issue calling the function here.
- CHECK(RemoveAllUserBookmarksIOS(browser_state_))
- << "Failed to remove all user bookmarks.";
+ // Failed to remove all user bookmarks.
+ CHECK(RemoveAllUserBookmarksIOS(browser_state_));
if (details.removal_mask != kRemoveAllDataMask) {
NOTREACHED() << "Unexpected partial remove browsing data request "

Powered by Google App Engine
This is Rietveld 408576698