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

Unified Diff: chrome/browser/chrome_browser_main_mac.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: chrome/browser/chrome_browser_main_mac.mm
diff --git a/chrome/browser/chrome_browser_main_mac.mm b/chrome/browser/chrome_browser_main_mac.mm
index 0e9c5ae6b0c92a09613023e3b0828777f591ebc1..2aafad14f64519bf2944722a584d9b0e73296b8f 100644
--- a/chrome/browser/chrome_browser_main_mac.mm
+++ b/chrome/browser/chrome_browser_main_mac.mm
@@ -113,7 +113,8 @@ void ChromeBrowserMainPartsMac::PreMainMessageLoopStart() {
ui::ResourceBundle::InitSharedInstanceWithLocale(
std::string(), &resource_delegate_,
ui::ResourceBundle::LOAD_COMMON_RESOURCES);
- CHECK(!loaded_locale.empty()) << "Default locale could not be found";
+ // Default locale could not be found
+ CHECK(!loaded_locale.empty());
base::FilePath resources_pack_path;
PathService::Get(chrome::FILE_RESOURCES_PACK, &resources_pack_path);

Powered by Google App Engine
This is Rietveld 408576698