diff options
author | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-31 20:27:23 +0000 |
---|---|---|
committer | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-31 20:27:23 +0000 |
commit | 682ebcf4e0b75969bfa55f9ff9ce08b3650d7f69 (patch) | |
tree | c051829e5431c88d9175586d291d05dc40df4baf /chrome/app/chrome_dll_main.cc | |
parent | f9358382509f917e508c7fd910ef2cc49d7671fc (diff) | |
download | chromium_src-682ebcf4e0b75969bfa55f9ff9ce08b3650d7f69.zip chromium_src-682ebcf4e0b75969bfa55f9ff9ce08b3650d7f69.tar.gz chromium_src-682ebcf4e0b75969bfa55f9ff9ce08b3650d7f69.tar.bz2 |
Relanding r22155 (GTK Themes: Use theme colors in the text view in the location bar.)
Fixed build issues with Ben's help.
Original Review URL: http://codereview.chromium.org/159671
Review URL: http://codereview.chromium.org/160466
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@22181 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/app/chrome_dll_main.cc')
-rw-r--r-- | chrome/app/chrome_dll_main.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/app/chrome_dll_main.cc b/chrome/app/chrome_dll_main.cc index ddf5b9f..478140c 100644 --- a/chrome/app/chrome_dll_main.cc +++ b/chrome/app/chrome_dll_main.cc @@ -186,7 +186,8 @@ static void GLibLogHandler(const gchar* log_domain, // This warning only occurs in obsolete versions of GTK and is harmless. // http://crbug.com/11133 } else if (strstr(message, "Theme file for default has no") || - strstr(message, "Theme directory")) { + strstr(message, "Theme directory") || + strstr(message, "theme pixmap")) { LOG(ERROR) << "GTK theme error: " << message; } else { #ifdef NDEBUG |