Chromium Code Reviews| Index: chrome/browser/printing/print_dialog_gtk.cc |
| =================================================================== |
| --- chrome/browser/printing/print_dialog_gtk.cc (revision 108912) |
| +++ chrome/browser/printing/print_dialog_gtk.cc (working copy) |
| @@ -191,6 +191,7 @@ |
| gtk_print_settings_set_n_copies(gtk_settings_, copies); |
| gtk_print_settings_set_collate(gtk_settings_, collate); |
| +#if defined(USE_CUPS) |
| std::string color_value; |
| std::string color_setting_name; |
| printing::GetColorModelForMode(color, &color_setting_name, &color_value); |
| @@ -214,6 +215,7 @@ |
| break; |
| } |
| gtk_print_settings_set(gtk_settings_, kCUPSDuplex, cups_duplex_mode); |
| +#endif |
|
dhw
2011/11/08 21:03:59
Needs to go after the close brace in the following
Lei Zhang
2011/11/08 21:12:46
Whoops. Will fix.
|
| } |
| } |
| if (!page_setup_) |