diff options
author | vandebo@chromium.org <vandebo@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-21 06:02:41 +0000 |
---|---|---|
committer | vandebo@chromium.org <vandebo@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-21 06:02:41 +0000 |
commit | d03154499968cd317de9fc722ed2b39563bf3265 (patch) | |
tree | 0fb574bcd9e01309badae3090af29ace9ccad5ba /printing/emf_win.h | |
parent | 89b5fab4ba1bdfe3a958e3b94a1860bfdeed1e3b (diff) | |
download | chromium_src-d03154499968cd317de9fc722ed2b39563bf3265.zip chromium_src-d03154499968cd317de9fc722ed2b39563bf3265.tar.gz chromium_src-d03154499968cd317de9fc722ed2b39563bf3265.tar.bz2 |
Unfork VectorPlatformCanvas.
Unfork VectorPlatformCanvas by making NativeMetafile know how to create an appropriate VectorPlatformDevice. This will also be useful when we have multiple NativeMetafile implemenations (each requiring a different VectorPlatformDevices).
BUG=NONE
TEST=NONE
Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=78662
Reverted: http://src.chromium.org/viewvc/chrome?view=rev&revision=78663
Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=78812
Reverted: http://src.chromium.org/viewvc/chrome?view=rev&revision=78815
Review URL: http://codereview.chromium.org/6665046
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78859 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'printing/emf_win.h')
-rw-r--r-- | printing/emf_win.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/printing/emf_win.h b/printing/emf_win.h index e3a0a8e..f2ccffd 100644 --- a/printing/emf_win.h +++ b/printing/emf_win.h @@ -35,6 +35,9 @@ class Emf : public NativeMetafile { virtual bool Init() { return true; } virtual bool InitFromData(const void* src_buffer, uint32 src_buffer_size); + virtual skia::PlatformDevice* StartPageForVectorCanvas( + const gfx::Size& page_size, const gfx::Point& content_origin, + const float& scale_factor); // Inserts a custom GDICOMMENT records indicating StartPage/EndPage calls // (since StartPage and EndPage do not work in a metafile DC). Only valid // when hdc_ is non-NULL. |page_size| and |content_origin| are ignored. |