diff options
author | ctguil@chromium.org <ctguil@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-27 00:56:11 +0000 |
---|---|---|
committer | ctguil@chromium.org <ctguil@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-27 00:56:11 +0000 |
commit | 8c383857b0210aa1648f94b1af8dfbd06d5cde2a (patch) | |
tree | 69af5f44bb9a17439184f5e3bb41734e6dceafb5 | |
parent | 0ee77893ce27123ba2b38564ced1129ae85539c1 (diff) | |
download | chromium_src-8c383857b0210aa1648f94b1af8dfbd06d5cde2a.zip chromium_src-8c383857b0210aa1648f94b1af8dfbd06d5cde2a.tar.gz chromium_src-8c383857b0210aa1648f94b1af8dfbd06d5cde2a.tar.bz2 |
Cleanup for post-commit comments for r93943.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/7517002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@94222 0039d316-1c4b-4281-b951-d872f2087c98
-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 |