| 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_UTILITY_CLOUD_PRINT_PWG_ENCODER_H_ | 5 #ifndef CHROME_UTILITY_CLOUD_PRINT_PWG_ENCODER_H_ |
| 6 #define CHROME_UTILITY_CLOUD_PRINT_PWG_ENCODER_H_ | 6 #define CHROME_UTILITY_CLOUD_PRINT_PWG_ENCODER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 namespace printing { | 10 #include "base/basictypes.h" |
| 11 |
| 12 namespace cloud_print { |
| 11 | 13 |
| 12 class BitmapImage; | 14 class BitmapImage; |
| 13 | 15 |
| 14 class PwgEncoder { | 16 class PwgEncoder { |
| 15 public: | 17 public: |
| 16 PwgEncoder(); | 18 PwgEncoder(); |
| 17 | 19 |
| 18 void EncodeDocumentHeader(std::string *output) const; | 20 void EncodeDocumentHeader(std::string *output) const; |
| 19 bool EncodePage(const BitmapImage& image, const uint32 dpi, | 21 bool EncodePage(const BitmapImage& image, const uint32 dpi, |
| 20 const uint32 total_pages, std::string* output) const; | 22 const uint32 total_pages, std::string* output) const; |
| 21 | 23 |
| 22 private: | 24 private: |
| 23 void EncodePageHeader(const BitmapImage& image, const uint32 dpi, | 25 void EncodePageHeader(const BitmapImage& image, const uint32 dpi, |
| 24 const uint32 total_pages, std::string* output) const; | 26 const uint32 total_pages, std::string* output) const; |
| 25 bool EncodeRowFrom32Bit(const uint8* row, const int width, | 27 bool EncodeRowFrom32Bit(const uint8* row, const int width, |
| 26 const int color_space, std::string* output) const; | 28 const int color_space, std::string* output) const; |
| 27 const uint8* GetRow(const BitmapImage& image, int row) const; | 29 const uint8* GetRow(const BitmapImage& image, int row) const; |
| 28 }; | 30 }; |
| 29 | 31 |
| 30 } // namespace printing | 32 } // namespace cloud_print |
| 31 | 33 |
| 32 #endif // CHROME_UTILITY_CLOUD_PRINT_PWG_ENCODER_H_ | 34 #endif // CHROME_UTILITY_CLOUD_PRINT_PWG_ENCODER_H_ |
| OLD | NEW |