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

Unified Diff: chrome/app/chrome_dll_main.cc

Issue 56176: Don't fatal error when GTK fails to load a 64-bit IME. (Closed)
Patch Set: Created 11 years, 9 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: chrome/app/chrome_dll_main.cc
diff --git a/chrome/app/chrome_dll_main.cc b/chrome/app/chrome_dll_main.cc
index 46bd0ff9e29084ab757930c716a38303f78ae446..f272f76f7821941f8e87d8465984a6cf8675ed4c 100644
--- a/chrome/app/chrome_dll_main.cc
+++ b/chrome/app/chrome_dll_main.cc
@@ -19,6 +19,7 @@
#if defined(OS_LINUX)
#include <gtk/gtk.h>
+#include <string.h>
#endif
#include "base/at_exit.h"
@@ -159,16 +160,24 @@ bool IncorrectChromeHtmlArguments(const std::wstring& command_line) {
#endif // OS_WIN
#if defined(OS_LINUX)
-static void GLibFatalLogHandler(const gchar* log_domain,
- GLogLevelFlags log_level,
- const gchar* message,
- gpointer userdata) {
+static void GLibLogHandler(const gchar* log_domain,
+ GLogLevelFlags log_level,
+ const gchar* message,
+ gpointer userdata) {
if (!log_domain)
log_domain = "<unknown>";
if (!message)
message = "<no message>";
- LOG(FATAL) << log_domain << ": " << message;
+ // http://code.google.com/p/chromium/issues/detail?id=9643
+ // Until we have a real 64-bit build or all of these 32-bit package issues
+ // are sorted out, don't fatal on ELF 32/64-bit mismatch warnings.
+ if (strstr(message, "Loading IM context type") ||
+ strstr(message, "wrong ELF class: ELFCLASS64")) {
+ LOG(ERROR) << "Bug 9643: " << log_domain << ": " << message;
+ } else {
+ LOG(FATAL) << log_domain << ": " << message;
+ }
}
static void SetUpGLibLogHandler() {
@@ -181,7 +190,7 @@ static void SetUpGLibLogHandler() {
G_LOG_LEVEL_ERROR |
G_LOG_LEVEL_CRITICAL |
G_LOG_LEVEL_WARNING),
- GLibFatalLogHandler,
+ GLibLogHandler,
NULL);
}
}
« 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