Chromium Code Reviews| Index: include/utils/win/SkIStream.h |
| diff --git a/include/utils/win/SkIStream.h b/include/utils/win/SkIStream.h |
| index deb3f3b0047ee63671673cf2556ba0ae2ed13479..e2c2b966fbd7450968fc75d5f77e48a301112402 100644 |
| --- a/include/utils/win/SkIStream.h |
| +++ b/include/utils/win/SkIStream.h |
| @@ -80,15 +80,15 @@ public: |
| class SkIStream : public SkBaseIStream { |
| private: |
| SkStream *fSkStream; |
| - bool fUnrefOnRelease; |
| + bool fDeleteOnRelease; |
|
scroggo
2015/01/22 13:55:36
Could be const?
|
| ULARGE_INTEGER fLocation; |
| - SkIStream(SkStream* stream, bool unrefOnRelease); |
| + SkIStream(SkStream* stream, bool fDeleteOnRelease); |
| virtual ~SkIStream(); |
| public: |
| HRESULT static CreateFromSkStream(SkStream* stream |
| - , bool unrefOnRelease |
| + , bool fDeleteOnRelease |
| , IStream ** ppStream); |
| virtual HRESULT STDMETHODCALLTYPE Read(void* pv, ULONG cb, ULONG* pcbRead); |