OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_PWG_RASTER_CONVERTER_H_ | 5 #ifndef CHROME_BROWSER_PRINTING_PWG_RASTER_CONVERTER_H_ |
6 #define CHROME_BROWSER_PRINTING_PWG_RASTER_CONVERTER_H_ | 6 #define CHROME_BROWSER_PRINTING_PWG_RASTER_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_ptr.h" |
10 | 11 |
11 namespace base { | 12 namespace base { |
12 class FilePath; | 13 class FilePath; |
13 } | 14 } |
14 | 15 |
15 namespace cloud_devices { | 16 namespace cloud_devices { |
16 class CloudDeviceDescription; | 17 class CloudDeviceDescription; |
17 } | 18 } |
18 | 19 |
19 namespace gfx { | 20 namespace gfx { |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 | 54 |
54 virtual void Start(base::RefCountedMemory* data, | 55 virtual void Start(base::RefCountedMemory* data, |
55 const PdfRenderSettings& conversion_settings, | 56 const PdfRenderSettings& conversion_settings, |
56 const PwgRasterSettings& bitmap_settings, | 57 const PwgRasterSettings& bitmap_settings, |
57 const ResultCallback& callback) = 0; | 58 const ResultCallback& callback) = 0; |
58 }; | 59 }; |
59 | 60 |
60 } // namespace printing | 61 } // namespace printing |
61 | 62 |
62 #endif // CHROME_BROWSER_PRINTING_PWG_RASTER_CONVERTER_H_ | 63 #endif // CHROME_BROWSER_PRINTING_PWG_RASTER_CONVERTER_H_ |
OLD | NEW |