diff options
author | hamaji@chromium.org <hamaji@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-05 06:45:21 +0000 |
---|---|---|
committer | hamaji@chromium.org <hamaji@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-05 06:45:21 +0000 |
commit | a12552b019c9b03162fba54aa9f2f8398f0ea32c (patch) | |
tree | 64a1b64484b0e1eb68a9c25bf96f502d3ab792f4 /printing/printed_document_win.cc | |
parent | 1322d8777c7c76eae42500407ec55adbc5e5187e (diff) | |
download | chromium_src-a12552b019c9b03162fba54aa9f2f8398f0ea32c.zip chromium_src-a12552b019c9b03162fba54aa9f2f8398f0ea32c.tar.gz chromium_src-a12552b019c9b03162fba54aa9f2f8398f0ea32c.tar.bz2 |
Add PrintedPage::GetCenteredPageContentRect so Mac and Win can share code.
BUG=47277
TEST=printed_page_unittest
Review URL: http://codereview.chromium.org/2878022
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51626 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'printing/printed_document_win.cc')
-rw-r--r-- | printing/printed_document_win.cc | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/printing/printed_document_win.cc b/printing/printed_document_win.cc index e80ac78a..ac5008c 100644 --- a/printing/printed_document_win.cc +++ b/printing/printed_document_win.cc @@ -51,17 +51,8 @@ void PrintedDocument::RenderPrintedPage( const printing::PageSetup& page_setup( immutable_.settings_.page_setup_device_units()); - gfx::Rect content_area(page.page_content_rect()); - const gfx::Size& physical_size = page_setup.physical_size(); - // http://dev.w3.org/csswg/css3-page/#positioning-page-box - if (physical_size.width() > page.page_size().width()) { - int diff = physical_size.width() - page.page_size().width(); - content_area.set_x(content_area.x() + diff / 2); - } - if (physical_size.height() > page.page_size().height()) { - int diff = physical_size.height() - page.page_size().height(); - content_area.set_y(content_area.y() + diff / 2); - } + gfx::Rect content_area; + page.GetCenteredPageContentRect(page_setup.physical_size(), &content_area); // Save the state to make sure the context this function call does not modify // the device context. |