Index: chrome/app/chrome_dll_main.cc |
diff --git a/chrome/app/chrome_dll_main.cc b/chrome/app/chrome_dll_main.cc |
index de4d82297564f2a40afa80c2402badced7cfad4f..213a40f2cd438f32820d9b87288811b9175a9c8b 100644 |
--- a/chrome/app/chrome_dll_main.cc |
+++ b/chrome/app/chrome_dll_main.cc |
@@ -176,6 +176,9 @@ static void GLibLogHandler(const gchar* log_domain, |
!GTK_CHECK_VERSION(2, 16, 1)) { |
// http://crbug.com/11133 |
LOG(ERROR) << "Bug 11133"; |
+ } else if (strstr(message, "Theme file for default has no") || |
+ strstr(message, "Theme directory")) { |
+ LOG(ERROR) << "GTK theme error: " << message; |
} else { |
#ifdef NDEBUG |
LOG(ERROR) << log_domain << ": " << message; |