// Copyright 2011 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "printing/units.h" #include "base/check_op.h" #include "printing/print_job_constants.h" namespace printing { int ConvertUnit(float value, int old_unit, int new_unit) { … } float ConvertUnitFloat(float value, float old_unit, float new_unit) { … } } // namespace printing