| 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 SkFlate_DEFINED | 10 #ifndef SkFlate_DEFINED |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 // The SkWStream interface: | 66 // The SkWStream interface: |
| 67 bool write(const void*, size_t) override; | 67 bool write(const void*, size_t) override; |
| 68 size_t bytesWritten() const override; | 68 size_t bytesWritten() const override; |
| 69 | 69 |
| 70 private: | 70 private: |
| 71 struct Impl; | 71 struct Impl; |
| 72 SkAutoTDelete<Impl> fImpl; | 72 SkAutoTDelete<Impl> fImpl; |
| 73 }; | 73 }; |
| 74 | 74 |
| 75 #endif // SkFlate_DEFINED | 75 #endif // SkFlate_DEFINED |
| OLD | NEW |