mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-04-03 21:51:06 +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
34 lines
1.1 KiB
Diff
34 lines
1.1 KiB
Diff
Index: webframe_impl.cc
|
|
===================================================================
|
|
--- webframe_impl.cc (revision 23266)
|
|
+++ webframe_impl.cc (working copy)
|
|
@@ -1045,6 +1045,16 @@
|
|
return print_context_->pageCount();
|
|
}
|
|
|
|
+float WebFrameImpl::getPrintPageShrink(int page) {
|
|
+ // Ensure correct state.
|
|
+ if (!print_context_.get() || page < 0) {
|
|
+ NOTREACHED();
|
|
+ return 0;
|
|
+ }
|
|
+
|
|
+ return print_context_->getPageShrink(page);
|
|
+}
|
|
+
|
|
float WebFrameImpl::printPage(int page, WebCanvas* canvas) {
|
|
// Ensure correct state.
|
|
if (!print_context_.get() || page < 0 || !frame() || !frame()->document()) {
|
|
Index: webframe_impl.h
|
|
===================================================================
|
|
--- webframe_impl.h (revision 23266)
|
|
+++ webframe_impl.h (working copy)
|
|
@@ -147,6 +147,7 @@
|
|
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,
|