diff options
author | ctguil@chromium.org <ctguil@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-30 02:24:44 +0000 |
---|---|---|
committer | ctguil@chromium.org <ctguil@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-30 02:24:44 +0000 |
commit | 39892b93d23fa18a0571f9098eebe5bcaeea91f0 (patch) | |
tree | 7f1d519e2350d26d8d0e82be2a069ade51925778 /printing/emf_win.cc | |
parent | f1e6bdc4cd64a95528400c3614610760ff13bc1f (diff) | |
download | chromium_src-39892b93d23fa18a0571f9098eebe5bcaeea91f0.zip chromium_src-39892b93d23fa18a0571f9098eebe5bcaeea91f0.tar.gz chromium_src-39892b93d23fa18a0571f9098eebe5bcaeea91f0.tar.bz2 |
Fix print preview clipping issues due to scaling.
BUG=79941
TEST=none
Review URL: http://codereview.chromium.org/6879098
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83657 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'printing/emf_win.cc')
-rw-r--r-- | printing/emf_win.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/printing/emf_win.cc b/printing/emf_win.cc index 758abc9..40f4dc8 100644 --- a/printing/emf_win.cc +++ b/printing/emf_win.cc @@ -404,9 +404,9 @@ bool Emf::Record::SafePlayback(const XFORM* base_matrix) const { } skia::PlatformDevice* Emf::StartPageForVectorCanvas( - const gfx::Size& page_size, const gfx::Point& content_origin, + const gfx::Size& page_size, const gfx::Rect& content_area, const float& scale_factor) { - if (!StartPage(page_size, content_origin, scale_factor)) + if (!StartPage(page_size, content_area, scale_factor)) return NULL; return skia::VectorPlatformDeviceEmfFactory::CreateDevice(page_size.width(), @@ -415,7 +415,7 @@ skia::PlatformDevice* Emf::StartPageForVectorCanvas( } bool Emf::StartPage(const gfx::Size& /*page_size*/, - const gfx::Point& /*content_origin*/, + const gfx::Rect& /*content_area*/, const float& /*scale_factor*/) { DCHECK(hdc_); if (!hdc_) |