diff options
author | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-13 18:53:59 +0000 |
---|---|---|
committer | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-13 18:53:59 +0000 |
commit | ec1f490fe96f63be82b701b10a2255eca4a0f28a (patch) | |
tree | 8d435b12610e0e5bf2998d1c455baa48dff23ae0 /webkit/glue/webframe_impl.h | |
parent | 9612e0a594ca40ff23a85b5d8af6de88dfc98dff (diff) | |
download | chromium_src-ec1f490fe96f63be82b701b10a2255eca4a0f28a.zip chromium_src-ec1f490fe96f63be82b701b10a2255eca4a0f28a.tar.gz chromium_src-ec1f490fe96f63be82b701b10a2255eca4a0f28a.tar.bz2 |
Restore the WebFrame::getPrintPageShrink() method originally added in rev 14639
and later removed in rev 19669. From the original commit message:
Rev 12100 changed the way that we spool and render printed output, most notably
introducing use of the PrintContext class. The existing
PrintContext::spoolPage() method applies a webkit scaling factor before
rendering output to the graphics context. ChromePrintContext::spoolPage() (in
webframe_impl.cc), which is used by chromium instead of
PrintContext::spoolPage(), does not apply this scaling factor, but instead
eventually returns the scaling factor via WebFrame::PrintPage(). This is a
problem for the Chromium Embedded Framework (CEF) because, unlike chromium, the
CEF renders directly to the printer device context. It is therefore important
for CEF that we retrieve and apply the webkit scaling factor before calling
PrintPage(). In order to support this capability the following adds a
WebFrame::GetPrintPageShrink() method.
Patch by Marshall Greenblatt
R=darin
BUG=none
TEST=none
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@23338 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/webframe_impl.h')
-rw-r--r-- | webkit/glue/webframe_impl.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/webkit/glue/webframe_impl.h b/webkit/glue/webframe_impl.h index db30142..3f898f9 100644 --- a/webkit/glue/webframe_impl.h +++ b/webkit/glue/webframe_impl.h @@ -147,6 +147,7 @@ class WebFrameImpl : public WebKit::WebFrame, virtual WebKit::WebString selectionAsMarkup() const; virtual int printBegin(const WebKit::WebSize& page_size); virtual float printPage(int page_to_print, WebKit::WebCanvas* canvas); + virtual float getPrintPageShrink(int page); virtual void printEnd(); virtual bool find( int identifier, const WebKit::WebString& search_text, |