mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-04-05 06:31:07 +02:00
- Modifications due to WebFrame moving from webkit/glue to webkit/api - Remove the ATL dependency from browser_drag_delegate.cc - Use scoped_refptr instead of scoped_ptr for BrowserWebViewDelegate pointers in CefBrowserImpl. - Allow cancellation of redirects before they're sent in browser_resource_loader_bridge.cc - Enable remote fonts, local storage and session storage in context.cc - Add vsprops files to the libcef project that used to exist in the webkit/build directory git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@34 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
17 lines
739 B
Diff
17 lines
739 B
Diff
Index: public/WebFrame.h
|
|
===================================================================
|
|
--- public/WebFrame.h (revision 23266)
|
|
+++ public/WebFrame.h (working copy)
|
|
@@ -332,6 +332,11 @@
|
|
// given page size.
|
|
virtual int printBegin(const WebSize& pageSize) = 0;
|
|
|
|
+ // Returns the page shrinking factor calculated by webkit (usually
|
|
+ // between 1/1.25 and 1/2). Returns 0 if the page number is invalid or
|
|
+ // not in printing mode.
|
|
+ virtual float getPrintPageShrink(int page) = 0;
|
|
+
|
|
// Prints one page, and returns the calculated page shrinking factor
|
|
// (usually between 1/1.25 and 1/2). Returns 0 if the page number is
|
|
// invalid or not in printing mode.
|