[M40_2214] StartPageForVectorCanvas() removed from printing/metafile.h
authorSeungSeop Park <sns.park@samsung.com>
Thu, 20 Nov 2014 10:22:38 +0000 (19:22 +0900)
committerYoungsoo Choi <kenshin.choi@samsung.com>
Tue, 10 Jul 2018 06:57:09 +0000 (06:57 +0000)
API only exists in printing/pdf_metafile_skia.h (PdfMetafileSkia class).

Bug: http://107.108.218.239/bugzilla/show_bug.cgi?id=9170
Reviewed by: Antonio Gomes, Laszlo Gombos, Viatcheslav Ostapenko

Change-Id: Ifb76cfa4466cf4696356e7c1d525d711f6f980f3
Signed-off-by: SeungSeop Park <sns.park@samsung.com>
tizen_src/impl/renderer/print_web_view_helper_efl.cc
tizen_src/impl/renderer/print_web_view_helper_efl.h

index bd3636b..d03569f 100644 (file)
@@ -186,7 +186,7 @@ bool PrintWebViewHelperEfl::PrintPageInternal(
     const PrintPageParams& params,
     const gfx::Size& canvas_size,
     blink::WebFrame* frame,
-    printing::Metafile* metafile) {
+    printing::PdfMetafileSkia* metafile) {
   PrintParams result;
   double scale_factor = 1.0f;
   gfx::Rect canvas_area(canvas_size);
index 9dcdb19..5901c62 100644 (file)
@@ -19,7 +19,7 @@ class WebFrame;
 }
 
 namespace printing {
-class Metafile;
+class PdfMetafileSkia;
 }
 
 struct PrintPagesParams;
@@ -35,7 +35,7 @@ class PrintWebViewHelperEfl {
   bool PrintPagesToPdf(blink::WebFrame* frame, int page_count,
       const gfx::Size& canvas_size);
   bool PrintPageInternal(const PrintPageParams& params,
-      const gfx::Size& canvas_size, blink::WebFrame* frame, printing::Metafile* metafile);
+      const gfx::Size& canvas_size, blink::WebFrame* frame, printing::PdfMetafileSkia* metafile);
   bool RenderPagesForPrint(blink::WebFrame* frame);
 
   scoped_ptr<PrintPagesParams> print_pages_params_;