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

Unified Diff: content/browser/browser_main_loop.cc

Issue 105273014: linux_aura: Work around a bug in the KDE Oxygen theme. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 months 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 b293a48dcd39e57c5cdaf3af581b478896dd2693..2e7ccef8ddd5961c0a1ddc21eac4c4ccec45c925 100644
--- a/content/browser/browser_main_loop.cc
+++ b/content/browser/browser_main_loop.cc
@@ -230,6 +230,8 @@ static void GLibLogHandler(const gchar* log_domain,
} else if (strstr(message, "Attempting to store changes into") ||
strstr(message, "Attempting to set the permissions of")) {
LOG(ERROR) << message << " (http://bugs.chromium.org/161366)";
+ } else if (strstr(message, "drawable is not a native X11 window")) {
+ LOG(ERROR) << message << " (http://bugs.chromium.org/329991)";
} else {
LOG(DFATAL) << log_domain << ": " << message;
}
« 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