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

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: gtk3 frame fixes Created 5 years, 4 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 b5159df02a3e91b640f71dc37d0e5e82f77e634a..9754b8485f53e0cabb4f3055d7ff789a698af6c7 100644
--- a/content/browser/browser_main_loop.cc
+++ b/content/browser/browser_main_loop.cc
@@ -240,7 +240,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;
Elliot Glaysher 2015/09/01 22:43:58 You'll want to revert back to DFATAL and whitelist
knthzh 2015/09/02 05:48:29 Why are glib logs being filtered this way? Can I c
Elliot Glaysher 2015/09/03 19:28:01 Because of GTK's permissiveness. GTK has the anno
knthzh 2015/09/04 00:15:18 Well then. I'm still skeptical about this, though
Elliot Glaysher 2015/09/09 17:58:10 Yes. That is the story of this list.
+ LOG(ERROR) << log_domain << ": " << message;
}
}

Powered by Google App Engine
This is Rietveld 408576698