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

Unified Diff: content/browser/browser_main_loop.cc

Issue 2741103004: Add an exception in GLibLogHandler for an AtSpi 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 211afb42d2b7de4b686664707ac02de8c7c74b34..191cc5712d1b08044a3bc62a77a5b7d99ffb7acb 100644
--- a/content/browser/browser_main_loop.cc
+++ b/content/browser/browser_main_loop.cc
@@ -275,6 +275,8 @@ static void GLibLogHandler(const gchar* log_domain,
LOG(ERROR) << message << " (http://crbug.com/431005)";
} else if (strstr(message, "deprecated")) {
LOG(ERROR) << message;
+ } else if (strstr(message, "Could not obtain desktop path or name")) {
+ 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