| Index: chrome/browser/browser_main.cc
|
| ===================================================================
|
| --- chrome/browser/browser_main.cc (revision 86828)
|
| +++ chrome/browser/browser_main.cc (working copy)
|
| @@ -902,6 +902,10 @@
|
| 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;
|
| }
|
|
|