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

Side by Side Diff: dm/DMWriteTask.h

Issue 806653007: Fix up all the easy virtual ... SK_OVERRIDE cases. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase Created 5 years, 11 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 | « dm/DMTestTask.h ('k') | experimental/PdfViewer/SkNulCanvas.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #ifndef DMWriteTask_DEFINED 1 #ifndef DMWriteTask_DEFINED
2 #define DMWriteTask_DEFINED 2 #define DMWriteTask_DEFINED
3 3
4 #include "DMTask.h" 4 #include "DMTask.h"
5 #include "SkBitmap.h" 5 #include "SkBitmap.h"
6 #include "SkStream.h" 6 #include "SkStream.h"
7 #include "SkString.h" 7 #include "SkString.h"
8 #include "SkTArray.h" 8 #include "SkTArray.h"
9 9
10 10
11 // Writes a bitmap to a file. 11 // Writes a bitmap to a file.
12 12
13 namespace DM { 13 namespace DM {
14 14
15 class WriteTask : public CpuTask { 15 class WriteTask : public CpuTask {
16 16
17 public: 17 public:
18 WriteTask(const Task& parent, // WriteTask must be a child task. 18 WriteTask(const Task& parent, // WriteTask must be a child task.
19 const char* sourceType, // E.g. "GM", "SKP". For humans. 19 const char* sourceType, // E.g. "GM", "SKP". For humans.
20 SkBitmap bitmap); // Bitmap to encode to PNG and write to d isk. 20 SkBitmap bitmap); // Bitmap to encode to PNG and write to d isk.
21 21
22 // Takes ownership of SkStreamAsset 22 // Takes ownership of SkStreamAsset
23 WriteTask(const Task& parent, // WriteTask must be a child task. 23 WriteTask(const Task& parent, // WriteTask must be a child task.
24 const char* sourceType, // E.g. "GM", "SKP". For humans. 24 const char* sourceType, // E.g. "GM", "SKP". For humans.
25 SkStreamAsset* data, // Pre-encoded data to write to disk. 25 SkStreamAsset* data, // Pre-encoded data to write to disk.
26 const char* ext); // File extension. 26 const char* ext); // File extension.
27 27
28 virtual void draw() SK_OVERRIDE; 28 void draw() SK_OVERRIDE;
29 virtual bool shouldSkip() const SK_OVERRIDE; 29 bool shouldSkip() const SK_OVERRIDE;
30 virtual SkString name() const SK_OVERRIDE; 30 SkString name() const SK_OVERRIDE;
31 31
32 private: 32 private:
33 SkTArray<SkString> fSuffixes; 33 SkTArray<SkString> fSuffixes;
34 const SkString fBaseName; 34 const SkString fBaseName;
35 const SkString fSourceType; 35 const SkString fSourceType;
36 const SkBitmap fBitmap; 36 const SkBitmap fBitmap;
37 SkAutoTDelete<SkStreamAsset> fData; 37 SkAutoTDelete<SkStreamAsset> fData;
38 const char* fExtension; 38 const char* fExtension;
39 39
40 void makeDirOrFail(SkString dir); 40 void makeDirOrFail(SkString dir);
41 }; 41 };
42 42
43 } // namespace DM 43 } // namespace DM
44 44
45 #endif // DMWriteTask_DEFINED 45 #endif // DMWriteTask_DEFINED
OLDNEW
« no previous file with comments | « dm/DMTestTask.h ('k') | experimental/PdfViewer/SkNulCanvas.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698