| OLD | NEW |
| 1 | 1 |
| 2 /* | 2 /* |
| 3 * Copyright 2010 The Android Open Source Project | 3 * Copyright 2010 The Android Open Source Project |
| 4 * | 4 * |
| 5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
| 6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
| 7 */ | 7 */ |
| 8 | 8 |
| 9 | 9 |
| 10 #ifndef SkJpegUtility_DEFINED | 10 #ifndef SkJpegUtility_DEFINED |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 | 38 |
| 39 SkWStream* fStream; | 39 SkWStream* fStream; |
| 40 | 40 |
| 41 enum { | 41 enum { |
| 42 kBufferSize = 1024 | 42 kBufferSize = 1024 |
| 43 }; | 43 }; |
| 44 uint8_t fBuffer[kBufferSize]; | 44 uint8_t fBuffer[kBufferSize]; |
| 45 }; | 45 }; |
| 46 | 46 |
| 47 #endif | 47 #endif |
| OLD | NEW |