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

Unified Diff: content/browser/browser_main.cc

Issue 7983018: gtk: swallow spurious error (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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 | « 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.cc
diff --git a/content/browser/browser_main.cc b/content/browser/browser_main.cc
index 29cee151b295f70baad3dbc3d6353b9abfc9843d..70791307d8a1cfe0cfc8d4dbbd83433d01a1442f 100644
--- a/content/browser/browser_main.cc
+++ b/content/browser/browser_main.cc
@@ -135,6 +135,8 @@ static void GLibLogHandler(const gchar* log_domain,
strstr(log_domain, "<unknown>")) {
LOG(ERROR) << "DBus call timeout or out of memory: "
<< "http://crosbug.com/15496";
+ } else if (strstr(message, "XDG_RUNTIME_DIR variable not set")) {
+ LOG(ERROR) << message << " (http://bugs.chromium.org/97293)";
} 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