| Index: chrome/browser/browser_main.cc
|
| diff --git a/chrome/browser/browser_main.cc b/chrome/browser/browser_main.cc
|
| index 9ebf1a973b6c98add7a206b8824b0faa0e63b317..d4ae258e08d0a89c62aa5419d43badd17eee49c5 100644
|
| --- a/chrome/browser/browser_main.cc
|
| +++ b/chrome/browser/browser_main.cc
|
| @@ -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;
|
| }
|
|
|