| OLD | NEW |
| 1 // Copyright 2013 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_LOCAL_DISCOVERY_PWG_RASTER_CONVERTER_H_ | 5 #ifndef CHROME_BROWSER_PRINTING_PDF_TO_EMF_CONVERTER_H_ |
| 6 #define CHROME_BROWSER_LOCAL_DISCOVERY_PWG_RASTER_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 | 10 |
| 11 namespace base { | 11 namespace base { |
| 12 class FilePath; | 12 class FilePath; |
| 13 } | 13 } |
| 14 | 14 |
| 15 namespace gfx { | 15 namespace gfx { |
| 16 class Size; | 16 class Size; |
| 17 } | 17 } |
| 18 | 18 |
| 19 namespace printing { | 19 namespace printing { |
| 20 class PdfRenderSettings; | 20 class PdfRenderSettings; |
| 21 struct PwgRasterSettings; | |
| 22 } | 21 } |
| 23 | 22 |
| 24 namespace local_discovery { | 23 namespace printing { |
| 25 | 24 |
| 26 class PWGRasterConverter { | 25 class PdfToEmfConverter { |
| 27 public: | 26 public: |
| 28 // Callback for when the PDF is converted to a PWG raster. | 27 // Callback for when the PDF is converted to an EMF. |
| 29 // |success| denotes whether the conversion succeeded. | 28 // |success| denotes whether the conversion succeeded. |
| 30 // |temp_file| is the path to the temp file (owned by the converter) that | 29 // |temp_file| is the path to the temp file (owned by the converter) that |
| 31 // contains the PWG raster data. | 30 // contains the PWG raster data. |
| 32 typedef base::Callback<void(bool /*success*/, | 31 typedef base::Callback<void(bool /*success*/, |
| 33 const base::FilePath& /*temp_file*/)> | 32 const base::FilePath& /*temp_file*/)> |
| 34 ResultCallback; | 33 ResultCallback; |
| 35 virtual ~PWGRasterConverter() {} | 34 virtual ~PdfToEmfConverter() {} |
| 36 | 35 |
| 37 static scoped_ptr<PWGRasterConverter> CreateDefault(); | 36 static scoped_ptr<PdfToEmfConverter> CreateDefault(); |
| 38 | 37 |
| 39 virtual void Start(base::RefCountedMemory* data, | 38 virtual void Start(base::RefCountedMemory* data, |
| 40 const printing::PdfRenderSettings& conversion_settings, | 39 const printing::PdfRenderSettings& conversion_settings, |
| 41 const printing::PwgRasterSettings& bitmap_settings, | |
| 42 const ResultCallback& callback) = 0; | 40 const ResultCallback& callback) = 0; |
| 43 }; | 41 }; |
| 44 | 42 |
| 45 } // namespace local_discovery | 43 } // namespace printing |
| 46 | 44 |
| 47 #endif // CHROME_BROWSER_LOCAL_DISCOVERY_PWG_RASTER_CONVERTER_H_ | 45 #endif // CHROME_BROWSER_PRINTING_PDF_TO_EMF_CONVERTER_H_ |
| OLD | NEW |