Commit a8144b7b authored by erg@chromium.org's avatar erg@chromium.org

linux_aura: Work around a bug in the KDE Oxygen theme.

BUG=329991

Review URL: https://codereview.chromium.org/105273014

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@243253 0039d316-1c4b-4281-b951-d872f2087c98
parent 078799be
...@@ -230,6 +230,8 @@ static void GLibLogHandler(const gchar* log_domain, ...@@ -230,6 +230,8 @@ static void GLibLogHandler(const gchar* log_domain,
} else if (strstr(message, "Attempting to store changes into") || } else if (strstr(message, "Attempting to store changes into") ||
strstr(message, "Attempting to set the permissions of")) { strstr(message, "Attempting to set the permissions of")) {
LOG(ERROR) << message << " (http://bugs.chromium.org/161366)"; 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 { } else {
LOG(DFATAL) << log_domain << ": " << message; LOG(DFATAL) << log_domain << ": " << message;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment