| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "printing/print_settings.h" | 5 #include "printing/print_settings.h" |
| 6 | 6 |
| 7 #include "base/atomic_sequence_num.h" | 7 #include "base/atomic_sequence_num.h" |
| 8 #include "base/lazy_instance.h" | 8 #include "base/lazy_instance.h" |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "printing/print_job_constants.h" | 10 #include "printing/print_job_constants.h" |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 margin_type_ = DEFAULT_MARGINS; | 135 margin_type_ = DEFAULT_MARGINS; |
| 136 desired_dpi_ = 72; | 136 desired_dpi_ = 72; |
| 137 selection_only_ = false; | 137 selection_only_ = false; |
| 138 title_ = base::string16(); | 138 title_ = base::string16(); |
| 139 url_ = base::string16(); | 139 url_ = base::string16(); |
| 140 display_header_footer_ = false; | 140 display_header_footer_ = false; |
| 141 device_name_.clear(); | 141 device_name_.clear(); |
| 142 requested_media_ = RequestedMedia(); | 142 requested_media_ = RequestedMedia(); |
| 143 page_setup_device_units_.Clear(); | 143 page_setup_device_units_.Clear(); |
| 144 dpi_ = 0; | 144 dpi_ = 0; |
| 145 scale_factor_ = 1.0f; |
| 145 landscape_ = false; | 146 landscape_ = false; |
| 146 supports_alpha_blend_ = true; | 147 supports_alpha_blend_ = true; |
| 147 should_print_backgrounds_ = false; | 148 should_print_backgrounds_ = false; |
| 148 collate_ = false; | 149 collate_ = false; |
| 149 color_ = UNKNOWN_COLOR_MODEL; | 150 color_ = UNKNOWN_COLOR_MODEL; |
| 150 copies_ = 0; | 151 copies_ = 0; |
| 151 duplex_mode_ = UNKNOWN_DUPLEX_MODE; | 152 duplex_mode_ = UNKNOWN_DUPLEX_MODE; |
| 152 #if defined(OS_WIN) | 153 #if defined(OS_WIN) |
| 153 print_text_with_gdi_ = false; | 154 print_text_with_gdi_ = false; |
| 154 printer_is_xps_ = false; | 155 printer_is_xps_ = false; |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 241 } | 242 } |
| 242 | 243 |
| 243 void PrintSettings::SetOrientation(bool landscape) { | 244 void PrintSettings::SetOrientation(bool landscape) { |
| 244 if (landscape_ != landscape) { | 245 if (landscape_ != landscape) { |
| 245 landscape_ = landscape; | 246 landscape_ = landscape; |
| 246 page_setup_device_units_.FlipOrientation(); | 247 page_setup_device_units_.FlipOrientation(); |
| 247 } | 248 } |
| 248 } | 249 } |
| 249 | 250 |
| 250 } // namespace printing | 251 } // namespace printing |
| OLD | NEW |