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

Unified Diff: content/browser/browser_main_loop.cc

Issue 1234223005: Initial gtk3 support (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed abort on GtkPrintUnixDialog Created 5 years, 5 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: content/browser/browser_main_loop.cc
diff --git a/content/browser/browser_main_loop.cc b/content/browser/browser_main_loop.cc
index b0fa2c08e2f9ded1115ae1acb462ee4f8440670c..6772ba1ab4a3bd71034a63dd45efa28052a30b01 100644
--- a/content/browser/browser_main_loop.cc
+++ b/content/browser/browser_main_loop.cc
@@ -234,7 +234,7 @@ static void GLibLogHandler(const gchar* log_domain,
} else if (strstr(message, "Cannot do system-bus activation with no user")) {
LOG(ERROR) << message << " (http://crbug.com/431005)";
} else {
- LOG(DFATAL) << log_domain << ": " << message;
+ LOG(ERROR) << log_domain << ": " << message;
Elliot Glaysher 2015/07/20 19:31:40 What messages were added here which tripped the DF
knthzh 2015/07/21 15:48:27 Whoops, didn't know git-cl doesn't preserve commit
}
}

Powered by Google App Engine
This is Rietveld 408576698