diff options
author | abodenha@chromium.org <abodenha@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-02 04:17:49 +0000 |
---|---|---|
committer | abodenha@chromium.org <abodenha@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-02 04:17:49 +0000 |
commit | a5ff559cf1182c4e86293784a64a52574eada1b4 (patch) | |
tree | c4d9206444a20d08f98bafbeb7dd3697e44f7349 /printing | |
parent | 8de874568361425c5ddc151bb80e52c2daf3453b (diff) | |
download | chromium_src-a5ff559cf1182c4e86293784a64a52574eada1b4.zip chromium_src-a5ff559cf1182c4e86293784a64a52574eada1b4.tar.gz chromium_src-a5ff559cf1182c4e86293784a64a52574eada1b4.tar.bz2 |
Switch the native print path on Linux and ChromeOS to use Skia instead of Cairo
BUG=
TEST=Pages printed via cloud print to raster based printers should successfully print images.
Review URL: http://codereview.chromium.org/7817007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@99318 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'printing')
-rw-r--r-- | printing/metafile_impl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/printing/metafile_impl.h b/printing/metafile_impl.h index a40e9b1..dd09e09 100644 --- a/printing/metafile_impl.h +++ b/printing/metafile_impl.h @@ -31,7 +31,7 @@ typedef PdfMetafileCg NativeMetafile; typedef PdfMetafileCg PreviewMetafile; #endif #elif defined(OS_POSIX) -typedef PdfMetafileCairo NativeMetafile; +typedef PdfMetafileSkia NativeMetafile; typedef PdfMetafileSkia PreviewMetafile; #endif |