Commit df4ff5ba authored by glotov@google.com's avatar glotov@google.com

Dbus call timeout handled

BUG=chromium-os:15496
TEST=none

Review URL: http://codereview.chromium.org/7031052

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86806 0039d316-1c4b-4281-b951-d872f2087c98
parent e8a954c9
......@@ -941,6 +941,10 @@ static void GLibLogHandler(const gchar* log_domain,
LOG(ERROR) << "GTK theme error: " << message;
} else if (strstr(message, "gtk_drag_dest_leave: assertion")) {
LOG(ERROR) << "Drag destination deleted: http://crbug.com/18557";
} else if (strstr(message, "Out of memory") &&
strstr(log_domain, "<unknown>")) {
LOG(ERROR) << "DBus call timeout or out of memory: "
<< "http://crosbug.com/15496";
} else {
LOG(DFATAL) << log_domain << ": " << message;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment