Chromium Code Reviews| Index: src/codec/SkBmpCodec.h |
| diff --git a/src/codec/SkBmpCodec.h b/src/codec/SkBmpCodec.h |
| index 65662ff1f869df3a655799f93e73598ed57a4a6a..eced37f7413bc9465973ab903d461df13dc6f802 100644 |
| --- a/src/codec/SkBmpCodec.h |
| +++ b/src/codec/SkBmpCodec.h |
| @@ -20,11 +20,7 @@ |
| */ |
| class SkBmpCodec : public SkCodec { |
| public: |
| - |
| - /* |
| - * Checks the start of the stream to see if the image is a bmp |
| - */ |
| - static bool IsBmp(SkStream*); |
| + static bool IsBmp(const char*, size_t); |
|
reed1
2015/12/08 15:04:57
const void* ?
In general, skia always uses void*
scroggo
2015/12/08 18:35:44
Done.
|
| /* |
| * Assumes IsBmp was called and returned true |