diff options
author | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-31 17:10:04 +0000 |
---|---|---|
committer | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-31 17:10:04 +0000 |
commit | 61816c7072466f7ea1bcb9befc54832e697126fa (patch) | |
tree | 88d33dd81290d7433a2aea0cb00e38f8020de93b /chrome/app | |
parent | c3f496d7cf3efe60ee153f3e78a7df01a1f65234 (diff) | |
download | chromium_src-61816c7072466f7ea1bcb9befc54832e697126fa.zip chromium_src-61816c7072466f7ea1bcb9befc54832e697126fa.tar.gz chromium_src-61816c7072466f7ea1bcb9befc54832e697126fa.tar.bz2 |
GTK Themes: Use theme colors in the text view in the location bar.
Tested with a bunch of light and dark themes.
Review URL: http://codereview.chromium.org/159671
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@22155 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/app')
-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 |