blob: 4f34624006fcd52643a988c6d53dcc161003adbe [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/services/printing/public/interfaces/pdf_to_pwg_raster_converter_struct_traits.h"
namespace mojo {
// static
bool StructTraits<printing::mojom::PwgRasterSettingsDataView,
printing::PwgRasterSettings>::
Read(printing::mojom::PwgRasterSettingsDataView data,
printing::PwgRasterSettings* out) {
out->rotate_all_pages = data.rotate_all_pages();
out->reverse_page_order = data.reverse_page_order();
out->use_color = data.use_color();
return data.ReadOddPageTransform(&out->odd_page_transform);
}
} // namespace mojo