// Copyright 2018 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/nup_parameters.h" #include <algorithm> #include <cmath> #include "base/check.h" #include "base/notreached.h" namespace printing { NupParameters::NupParameters(int pages_per_sheet, bool is_source_landscape) { … } // static bool NupParameters::IsSupported(int pages_per_sheet) { … } void NupParameters::SetParameters(int pages_per_sheet, bool is_source_landscape) { … } } // namespace printing