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

Unified Diff: content/browser/browser_main_loop.cc

Issue 2744253003: Add exception in GlibLogHandler for atk-bridge warning (Closed)
Patch Set: Created 3 years, 9 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 | « no previous file | 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 1762d79995c482269975164203244b9f2aa5185a..9e223dbc4dbf87799bf6f826adb3dbcc12d685fe 100644
--- a/content/browser/browser_main_loop.cc
+++ b/content/browser/browser_main_loop.cc
@@ -279,6 +279,8 @@ static void GLibLogHandler(const gchar* log_domain,
LOG(ERROR) << message;
} else if (strstr(message, "Theme parsing error")) {
LOG(ERROR) << message;
+ } else if (strstr(message, "unknown signature")) {
+ LOG(ERROR) << message;
} else {
LOG(DFATAL) << log_domain << ": " << message;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698