| Index: chrome/common/platform_util_linux.cc
|
| ===================================================================
|
| --- chrome/common/platform_util_linux.cc (revision 32880)
|
| +++ chrome/common/platform_util_linux.cc (working copy)
|
| @@ -9,6 +9,7 @@
|
| #include "base/file_util.h"
|
| #include "base/process_util.h"
|
| #include "base/string_util.h"
|
| +#include "chrome/common/gtk_util.h"
|
| #include "chrome/common/process_watcher.h"
|
| #include "googleurl/src/gurl.h"
|
|
|
| @@ -80,6 +81,7 @@
|
| const string16& message) {
|
| GtkWidget* dialog = gtk_message_dialog_new(parent, GTK_DIALOG_MODAL,
|
| GTK_MESSAGE_ERROR, GTK_BUTTONS_OK, "%s", UTF16ToUTF8(message).c_str());
|
| + gtk_util::ApplyMessageDialogQuirks(dialog);
|
| gtk_window_set_title(GTK_WINDOW(dialog), UTF16ToUTF8(title).c_str());
|
| g_signal_connect(dialog, "response", G_CALLBACK(gtk_widget_destroy), NULL);
|
| gtk_widget_show_all(dialog);
|
|
|