Index: chrome/browser/ui/gtk/simple_message_box_gtk.cc |
diff --git a/chrome/browser/ui/gtk/simple_message_box_gtk.cc b/chrome/browser/ui/gtk/simple_message_box_gtk.cc |
index 42ff81a4b8b19befb4cb77ac09adc20cacd11ce7..23d4578bb6f40890b16e5c8583e0995cf39ec17a 100644 |
--- a/chrome/browser/ui/gtk/simple_message_box_gtk.cc |
+++ b/chrome/browser/ui/gtk/simple_message_box_gtk.cc |
@@ -13,9 +13,7 @@ namespace { |
void SetDialogTitle(GtkWidget* dialog, const string16& title) { |
gtk_window_set_title(GTK_WINDOW(dialog), UTF16ToUTF8(title).c_str()); |
- // The following code requires the dialog to be realized. However, we host |
- // dialog's content in a Chrome window without really realize the dialog |
- // on ChromeOS. Thus, skip the following code for ChromeOS. |
+ // The following code requires the dialog to be realized. |
gtk_widget_realize(dialog); |
// Make sure it's big enough to show the title. |