OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_MAC_H_ | 5 #ifndef PRINTING_PDF_METAFILE_MAC_H_ |
6 #define PRINTING_PDF_METAFILE_MAC_H_ | 6 #define PRINTING_PDF_METAFILE_MAC_H_ |
7 | 7 |
8 #include <ApplicationServices/ApplicationServices.h> | 8 #include <ApplicationServices/ApplicationServices.h> |
9 #include <CoreFoundation/CoreFoundation.h> | 9 #include <CoreFoundation/CoreFoundation.h> |
10 | 10 |
(...skipping 15 matching lines...) Expand all Loading... |
26 // This class creates a graphics context that renders into a PDF data stream. | 26 // This class creates a graphics context that renders into a PDF data stream. |
27 class PdfMetafile : public NativeMetafile { | 27 class PdfMetafile : public NativeMetafile { |
28 public: | 28 public: |
29 | 29 |
30 virtual ~PdfMetafile(); | 30 virtual ~PdfMetafile(); |
31 | 31 |
32 // NativeMetafile methods. | 32 // NativeMetafile methods. |
33 virtual bool Init(); | 33 virtual bool Init(); |
34 virtual bool InitFromData(const void* src_buffer, uint32 src_buffer_size); | 34 virtual bool InitFromData(const void* src_buffer, uint32 src_buffer_size); |
35 | 35 |
| 36 // Not implemented on mac. |
| 37 virtual skia::PlatformDevice* StartPageForVectorCanvas( |
| 38 const gfx::Size& page_size, const gfx::Point& content_origin, |
| 39 const float& scale_factor); |
36 virtual bool StartPage(const gfx::Size& page_size, | 40 virtual bool StartPage(const gfx::Size& page_size, |
37 const gfx::Point& content_origin, | 41 const gfx::Point& content_origin, |
38 const float& scale_factor); | 42 const float& scale_factor); |
39 virtual bool FinishPage(); | 43 virtual bool FinishPage(); |
40 virtual bool Close(); | 44 virtual bool Close(); |
41 | 45 |
42 virtual uint32 GetDataSize() const; | 46 virtual uint32 GetDataSize() const; |
43 virtual bool GetData(void* dst_buffer, uint32 dst_buffer_size) const; | 47 virtual bool GetData(void* dst_buffer, uint32 dst_buffer_size) const; |
44 | 48 |
45 // For testing purposes only. | 49 // For testing purposes only. |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 | 85 |
82 // Whether or not a page is currently open. | 86 // Whether or not a page is currently open. |
83 bool page_is_open_; | 87 bool page_is_open_; |
84 | 88 |
85 DISALLOW_COPY_AND_ASSIGN(PdfMetafile); | 89 DISALLOW_COPY_AND_ASSIGN(PdfMetafile); |
86 }; | 90 }; |
87 | 91 |
88 } // namespace printing | 92 } // namespace printing |
89 | 93 |
90 #endif // PRINTING_PDF_METAFILE_MAC_H_ | 94 #endif // PRINTING_PDF_METAFILE_MAC_H_ |
OLD | NEW |