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

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: Silence gtk memory leak Created 5 years, 3 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
« no previous file with comments | « chrome/browser/ui/libgtk2ui/x11_input_method_context_impl_gtk2.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/browser_main_loop.cc
diff --git a/content/browser/browser_main_loop.cc b/content/browser/browser_main_loop.cc
index eb294ef5a467233e7c7a391b7c9edccfed75375b..1e39ed4aab0043d1af2633d45b648c7a28b741d9 100644
--- a/content/browser/browser_main_loop.cc
+++ b/content/browser/browser_main_loop.cc
@@ -241,6 +241,8 @@ static void GLibLogHandler(const gchar* log_domain,
LOG(ERROR) << message << " (http://bugs.chromium.org/329991)";
} else if (strstr(message, "Cannot do system-bus activation with no user")) {
LOG(ERROR) << message << " (http://crbug.com/431005)";
+ } else if (strstr(message, "deprecated")) {
+ LOG(ERROR) << message;
} else {
LOG(DFATAL) << log_domain << ": " << message;
}
« no previous file with comments | « chrome/browser/ui/libgtk2ui/x11_input_method_context_impl_gtk2.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698