Updating trunk VERSION from 903.0 to 904.0
[chromium-blink-merge.git] / printing / page_size_margins.h
blob4f74c297f52b578e9a5cc7be2374eece777c3be5
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef PRINTING_PAGE_SIZE_MARGINS_H_
6 #define PRINTING_PAGE_SIZE_MARGINS_H_
8 namespace printing {
10 // Struct that holds margin and content area sizes of a page. Units are
11 // arbitrary and can be chosen by the programmer.
12 struct PageSizeMargins {
13 double content_width;
14 double content_height;
15 double margin_top;
16 double margin_right;
17 double margin_bottom;
18 double margin_left;
21 } // namespace printing
23 #endif // PRINTING_PAGE_SIZE_MARGINS_H_