OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef PRINTING_PDF_METAFILE_SKIA_H_ | 5 #ifndef PRINTING_PDF_METAFILE_SKIA_H_ |
6 #define PRINTING_PDF_METAFILE_SKIA_H_ | 6 #define PRINTING_PDF_METAFILE_SKIA_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <memory> | 10 #include <memory> |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 | 50 |
51 gfx::Rect GetPageBounds(unsigned int page_number) const override; | 51 gfx::Rect GetPageBounds(unsigned int page_number) const override; |
52 unsigned int GetPageCount() const override; | 52 unsigned int GetPageCount() const override; |
53 | 53 |
54 skia::NativeDrawingContext context() const override; | 54 skia::NativeDrawingContext context() const override; |
55 | 55 |
56 #if defined(OS_WIN) | 56 #if defined(OS_WIN) |
57 bool Playback(skia::NativeDrawingContext hdc, | 57 bool Playback(skia::NativeDrawingContext hdc, |
58 const RECT* rect) const override; | 58 const RECT* rect) const override; |
59 bool SafePlayback(skia::NativeDrawingContext hdc) const override; | 59 bool SafePlayback(skia::NativeDrawingContext hdc) const override; |
60 #elif defined(OS_MACOSX) | |
61 bool RenderPage(unsigned int page_number, | |
62 skia::NativeDrawingContext context, | |
63 const CGRect rect, | |
64 const MacRenderPageParams& params) const override; | |
65 #endif | 60 #endif |
66 | 61 |
67 bool SaveTo(base::File* file) const override; | 62 bool SaveTo(base::File* file) const override; |
68 | 63 |
69 // Return a new metafile containing just the current page in draft mode. | 64 // Return a new metafile containing just the current page in draft mode. |
70 std::unique_ptr<PdfMetafileSkia> GetMetafileForCurrentPage( | 65 std::unique_ptr<PdfMetafileSkia> GetMetafileForCurrentPage( |
71 SkiaDocumentType type); | 66 SkiaDocumentType type); |
72 | 67 |
73 // This method calls StartPage and then returns an appropriate | 68 // This method calls StartPage and then returns an appropriate |
74 // PlatformCanvas implementation bound to the context created by | 69 // PlatformCanvas implementation bound to the context created by |
75 // StartPage or NULL on error. The PaintCanvas pointer that | 70 // StartPage or NULL on error. The PaintCanvas pointer that |
76 // is returned is owned by this PdfMetafileSkia object and does not | 71 // is returned is owned by this PdfMetafileSkia object and does not |
77 // need to be ref()ed or unref()ed. The canvas will remain valid | 72 // need to be ref()ed or unref()ed. The canvas will remain valid |
78 // until FinishPage() or FinishDocument() is called. | 73 // until FinishPage() or FinishDocument() is called. |
79 cc::PaintCanvas* GetVectorCanvasForNewPage(const gfx::Size& page_size, | 74 cc::PaintCanvas* GetVectorCanvasForNewPage(const gfx::Size& page_size, |
80 const gfx::Rect& content_area, | 75 const gfx::Rect& content_area, |
81 const float& scale_factor); | 76 const float& scale_factor); |
82 | 77 |
83 private: | 78 private: |
84 std::unique_ptr<PdfMetafileSkiaData> data_; | 79 std::unique_ptr<PdfMetafileSkiaData> data_; |
85 | 80 |
86 DISALLOW_COPY_AND_ASSIGN(PdfMetafileSkia); | 81 DISALLOW_COPY_AND_ASSIGN(PdfMetafileSkia); |
87 }; | 82 }; |
88 | 83 |
89 } // namespace printing | 84 } // namespace printing |
90 | 85 |
91 #endif // PRINTING_PDF_METAFILE_SKIA_H_ | 86 #endif // PRINTING_PDF_METAFILE_SKIA_H_ |
OLD | NEW |