Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(297)

Side by Side Diff: third_party/WebKit/Source/platform/graphics/DecodingImageGenerator.h

Issue 1887733003: Remove redundant DecodingImageGenerator::m_generationId (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@sharedBufferInterface6
Patch Set: Remove dependency Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/graphics/DecodingImageGenerator.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 // 44 //
45 class PLATFORM_EXPORT DecodingImageGenerator final : public SkImageGenerator { 45 class PLATFORM_EXPORT DecodingImageGenerator final : public SkImageGenerator {
46 USING_FAST_MALLOC(DecodingImageGenerator); 46 USING_FAST_MALLOC(DecodingImageGenerator);
47 WTF_MAKE_NONCOPYABLE(DecodingImageGenerator); 47 WTF_MAKE_NONCOPYABLE(DecodingImageGenerator);
48 public: 48 public:
49 static SkImageGenerator* create(SkData*); 49 static SkImageGenerator* create(SkData*);
50 50
51 DecodingImageGenerator(PassRefPtr<ImageFrameGenerator>, const SkImageInfo&, size_t index); 51 DecodingImageGenerator(PassRefPtr<ImageFrameGenerator>, const SkImageInfo&, size_t index);
52 ~DecodingImageGenerator() override; 52 ~DecodingImageGenerator() override;
53 53
54 void setGenerationId(size_t id) { m_generationId = id; }
55 void setCanYUVDecode(bool yes) { m_canYUVDecode = yes; } 54 void setCanYUVDecode(bool yes) { m_canYUVDecode = yes; }
56 55
57 protected: 56 protected:
58 SkData* onRefEncodedData() override; 57 SkData* onRefEncodedData() override;
59 58
60 bool onGetPixels(const SkImageInfo&, void* pixels, size_t rowBytes, SkPMColo r table[], int* tableCount) override; 59 bool onGetPixels(const SkImageInfo&, void* pixels, size_t rowBytes, SkPMColo r table[], int* tableCount) override;
61 60
62 bool onQueryYUV8(SkYUVSizeInfo*, SkYUVColorSpace*) const override; 61 bool onQueryYUV8(SkYUVSizeInfo*, SkYUVColorSpace*) const override;
63 62
64 bool onGetYUV8Planes(const SkYUVSizeInfo&, void* planes[3]) override; 63 bool onGetYUV8Planes(const SkYUVSizeInfo&, void* planes[3]) override;
65 64
66 private: 65 private:
67 RefPtr<ImageFrameGenerator> m_frameGenerator; 66 RefPtr<ImageFrameGenerator> m_frameGenerator;
68 size_t m_frameIndex; 67 size_t m_frameIndex;
69 size_t m_generationId;
70 bool m_canYUVDecode; 68 bool m_canYUVDecode;
71 }; 69 };
72 70
73 } // namespace blink 71 } // namespace blink
74 72
75 #endif // DecodingImageGenerator_h_ 73 #endif // DecodingImageGenerator_h_
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/graphics/DecodingImageGenerator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698