| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 CHROME_BROWSER_PRINTING_PDF_TO_EMF_CONVERTER_H_ | 5 #ifndef CHROME_BROWSER_PRINTING_PDF_TO_EMF_CONVERTER_H_ |
| 6 #define CHROME_BROWSER_PRINTING_PDF_TO_EMF_CONVERTER_H_ | 6 #define CHROME_BROWSER_PRINTING_PDF_TO_EMF_CONVERTER_H_ |
| 7 | 7 |
| 8 #include "base/callback.h" | 8 #include "base/callback.h" |
| 9 #include "base/memory/ref_counted_memory.h" | 9 #include "base/memory/ref_counted_memory.h" |
| 10 #include "base/memory/scoped_vector.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 | 11 |
| 12 namespace base { | 12 namespace base { |
| 13 class FilePath; | 13 class FilePath; |
| 14 } | 14 } |
| 15 | 15 |
| 16 namespace printing { | 16 namespace printing { |
| 17 | 17 |
| 18 class MetafilePlayer; | 18 class MetafilePlayer; |
| 19 class PdfRenderSettings; | 19 class PdfRenderSettings; |
| 20 | 20 |
| 21 class PdfToEmfConverter { | 21 class PdfToEmfConverter { |
| 22 public: | 22 public: |
| 23 // Callback for when the PDF is converted to an EMF. | 23 // Callback for when the PDF is converted to an EMF. |
| 24 // Takes ownership of metafiles. | 24 typedef base::Callback<void(int page_number, |
| 25 typedef base::Callback<void(double /*scale_factor*/, | 25 double scale_factor, |
| 26 ScopedVector<MetafilePlayer>* /*emf_files*/)> | 26 scoped_ptr<MetafilePlayer> emf)> PageCallback; |
| 27 ResultCallback; | 27 typedef base::Callback<void(int page_count)> PdfLoadedCallback; |
| 28 |
| 28 virtual ~PdfToEmfConverter() {} | 29 virtual ~PdfToEmfConverter() {} |
| 29 | 30 |
| 30 static scoped_ptr<PdfToEmfConverter> CreateDefault(); | 31 static scoped_ptr<PdfToEmfConverter> CreateDefault(); |
| 31 | 32 |
| 32 virtual void Start(base::RefCountedMemory* data, | 33 virtual void Start(const scoped_refptr<base::RefCountedMemory>& data, |
| 33 const printing::PdfRenderSettings& conversion_settings, | 34 const printing::PdfRenderSettings& conversion_settings, |
| 34 const ResultCallback& callback) = 0; | 35 const PdfLoadedCallback& document_callback) = 0; |
| 36 |
| 37 virtual void GetPage(int page_number, const PageCallback& page_callback) = 0; |
| 35 }; | 38 }; |
| 36 | 39 |
| 37 } // namespace printing | 40 } // namespace printing |
| 38 | 41 |
| 39 #endif // CHROME_BROWSER_PRINTING_PDF_TO_EMF_CONVERTER_H_ | 42 #endif // CHROME_BROWSER_PRINTING_PDF_TO_EMF_CONVERTER_H_ |
| OLD | NEW |