Chromium Code Reviews| Index: include/core/SkImageDecoder.h |
| diff --git a/include/core/SkImageDecoder.h b/include/core/SkImageDecoder.h |
| index 360f03acb6304022b949b3d4708456c336b227c4..8ce5b1611da0f31eca52f254211b92b209b003e5 100644 |
| --- a/include/core/SkImageDecoder.h |
| +++ b/include/core/SkImageDecoder.h |
| @@ -221,9 +221,9 @@ public: |
| note: document use of Allocator, Peeker and Chooser |
|
djsollen
2013/06/26 11:56:45
can you add info here on how they can use the allo
scroggo
2013/06/26 15:35:28
How does the new comment sound? Since bitmap reuse
|
| */ |
| - bool decode(SkStream*, SkBitmap* bitmap, SkBitmap::Config pref, Mode, bool reuseBitmap = false); |
| - bool decode(SkStream* stream, SkBitmap* bitmap, Mode mode, bool reuseBitmap = false) { |
| - return this->decode(stream, bitmap, SkBitmap::kNo_Config, mode, reuseBitmap); |
| + bool decode(SkStream*, SkBitmap* bitmap, SkBitmap::Config pref, Mode); |
| + bool decode(SkStream* stream, SkBitmap* bitmap, Mode mode) { |
| + return this->decode(stream, bitmap, SkBitmap::kNo_Config, mode); |
| } |
| /** |