| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_PRINTING_UNITS_H__ | |
| 6 #define CHROME_BROWSER_PRINTING_UNITS_H__ | |
| 7 | |
| 8 namespace printing { | |
| 9 | |
| 10 // Length of a thousanth of inches in 0.01mm unit. | |
| 11 const int kHundrethsMMPerInch = 2540; | |
| 12 | |
| 13 // Converts from one unit system to another using integer arithmetics. | |
| 14 int ConvertUnit(int value, int old_unit, int new_unit); | |
| 15 | |
| 16 // Converts from one unit system to another using doubles. | |
| 17 double ConvertUnitDouble(double value, double old_unit, double new_unit); | |
| 18 | |
| 19 // Converts from 0.001 inch unit to 0.00001 meter. | |
| 20 int ConvertMilliInchToHundredThousanthMeter(int milli_inch); | |
| 21 | |
| 22 // Converts from 0.00001 meter unit to 0.001 inch. | |
| 23 int ConvertHundredThousanthMeterToMilliInch(int cmm); | |
| 24 | |
| 25 } // namespace printing | |
| 26 | |
| 27 #endif // CHROME_BROWSER_PRINTING_UNITS_H__ | |
| 28 | |
| OLD | NEW |