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

Unified Diff: content/browser/browser_main_loop.cc

Issue 8907052: GTK: Expand the list of acceptable errors from GTK to handle missing theme engines. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 9 years 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_loop.cc
diff --git a/content/browser/browser_main_loop.cc b/content/browser/browser_main_loop.cc
index 7823617c0a30070293dcf8edee40893207142736..fad569ed89be83222e6449a5d95e2447878b3f01 100644
--- a/content/browser/browser_main_loop.cc
+++ b/content/browser/browser_main_loop.cc
@@ -114,7 +114,8 @@ static void GLibLogHandler(const gchar* log_domain,
LOG(ERROR) << "GTK File code error: " << message;
} else if (strstr(message, "Theme file for default has no") ||
strstr(message, "Theme directory") ||
- strstr(message, "theme pixmap")) {
+ strstr(message, "theme pixmap") ||
+ strstr(message, "locate theme engine")) {
LOG(ERROR) << "GTK theme error: " << message;
} else if (strstr(message, "gtk_drag_dest_leave: assertion")) {
LOG(ERROR) << "Drag destination deleted: http://crbug.com/18557";
« 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