| Index: printing/page_size_margins.h
|
| diff --git a/printing/page_size_margins.h b/printing/page_size_margins.h
|
| index 4f74c297f52b578e9a5cc7be2374eece777c3be5..c1109ab1c9b9c94dbd50eb38c035b978da85fe7a 100644
|
| --- a/printing/page_size_margins.h
|
| +++ b/printing/page_size_margins.h
|
| @@ -5,6 +5,10 @@
|
| #ifndef PRINTING_PAGE_SIZE_MARGINS_H_
|
| #define PRINTING_PAGE_SIZE_MARGINS_H_
|
|
|
| +namespace base {
|
| +class DictionaryValue;
|
| +}
|
| +
|
| namespace printing {
|
|
|
| // Struct that holds margin and content area sizes of a page. Units are
|
| @@ -18,7 +22,9 @@ struct PageSizeMargins {
|
| double margin_left;
|
| };
|
|
|
| +void getCustomMarginsFromJobSettings(const base::DictionaryValue& settings,
|
| + PageSizeMargins* page_size_margins);
|
| +
|
| } // namespace printing
|
|
|
| #endif // PRINTING_PAGE_SIZE_MARGINS_H_
|
| -
|
|
|