diff options
Diffstat (limited to 'chrome/renderer/print_web_view_helper.h')
-rw-r--r-- | chrome/renderer/print_web_view_helper.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/renderer/print_web_view_helper.h b/chrome/renderer/print_web_view_helper.h index 14fc465..8b4342d 100644 --- a/chrome/renderer/print_web_view_helper.h +++ b/chrome/renderer/print_web_view_helper.h @@ -74,15 +74,15 @@ class PrepareFrameAndViewForPrint { DISALLOW_COPY_AND_ASSIGN(PrepareFrameAndViewForPrint); }; -// Struct that holds margin and content area information of a page. -typedef struct PageSizeMargins { +// Struct that holds margin and content area sizes of a page in points. +struct PageSizeMargins { double content_width; double content_height; double margin_top; double margin_right; double margin_bottom; double margin_left; -} PageSizeMargins; +}; // PrintWebViewHelper handles most of the printing grunt work for RenderView. // We plan on making print asynchronous and that will require copying the DOM |