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

Unified Diff: chrome/app/chrome_dll_main.cc

Issue 150176: GTK: First draft of using native themes, partially based on evan's CL 118358. (Closed)
Patch Set: And the codereview tool is back. Created 11 years, 6 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 | chrome/browser/browser_theme_provider.h » ('j') | chrome/browser/browser_theme_provider.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/app/chrome_dll_main.cc
diff --git a/chrome/app/chrome_dll_main.cc b/chrome/app/chrome_dll_main.cc
index de4d82297564f2a40afa80c2402badced7cfad4f..213a40f2cd438f32820d9b87288811b9175a9c8b 100644
--- a/chrome/app/chrome_dll_main.cc
+++ b/chrome/app/chrome_dll_main.cc
@@ -176,6 +176,9 @@ static void GLibLogHandler(const gchar* log_domain,
!GTK_CHECK_VERSION(2, 16, 1)) {
// http://crbug.com/11133
LOG(ERROR) << "Bug 11133";
+ } else if (strstr(message, "Theme file for default has no") ||
+ strstr(message, "Theme directory")) {
+ LOG(ERROR) << "GTK theme error: " << message;
} else {
#ifdef NDEBUG
LOG(ERROR) << log_domain << ": " << message;
« no previous file with comments | « no previous file | chrome/browser/browser_theme_provider.h » ('j') | chrome/browser/browser_theme_provider.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698