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

Unified Diff: content/browser/browser_main_loop.cc

Issue 2748443003: Add exception in GLibLogHandler for Gtk theme 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 191cc5712d1b08044a3bc62a77a5b7d99ffb7acb..1762d79995c482269975164203244b9f2aa5185a 100644
--- a/content/browser/browser_main_loop.cc
+++ b/content/browser/browser_main_loop.cc
@@ -277,6 +277,8 @@ static void GLibLogHandler(const gchar* log_domain,
LOG(ERROR) << message;
} else if (strstr(message, "Could not obtain desktop path or name")) {
LOG(ERROR) << message;
+ } else if (strstr(message, "Theme parsing error")) {
+ 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