// 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. #ifndef PRINTING_PAGE_SETUP_H_ #define PRINTING_PAGE_SETUP_H_ #include "base/component_export.h" #include "ui/gfx/geometry/rect.h" namespace printing { // Margins for a page setup. class COMPONENT_EXPORT(PRINTING_SETTINGS) PageMargins { … }; // Settings that define the size and printable areas of a page. Unit is // unspecified. class COMPONENT_EXPORT(PRINTING_SETTINGS) PageSetup { … }; } // namespace printing #endif // PRINTING_PAGE_SETUP_H_