| Index: printing/units.cc
|
| diff --git a/printing/units.cc b/printing/units.cc
|
| index dcee9ea56afd3821d9c8555467f3f35c89701369..6340b62521e05b8ad97d3f7ab21a1bf802e25021 100644
|
| --- a/printing/units.cc
|
| +++ b/printing/units.cc
|
| @@ -9,7 +9,7 @@
|
|
|
| namespace printing {
|
|
|
| -int ConvertUnit(int value, int old_unit, int new_unit) {
|
| +int ConvertUnit(double value, int old_unit, int new_unit) {
|
| DCHECK_GT(new_unit, 0);
|
| DCHECK_GT(old_unit, 0);
|
| // With integer arithmetic, to divide a value with correct rounding, you need
|
|
|