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

Unified Diff: dm/DMRecordTask.cpp

Issue 248033002: Rearrange SkRecord public API to fit better with cc/resources/picture (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: add forgetRecord() Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | include/record/SkRecording.h » ('j') | include/record/SkRecording.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dm/DMRecordTask.cpp
diff --git a/dm/DMRecordTask.cpp b/dm/DMRecordTask.cpp
index 95a8bbd217cc781c7357660a703a1043164e92d4..31c46a69dac41173c1e519d1bebd7fa37fdd4839 100644
--- a/dm/DMRecordTask.cpp
+++ b/dm/DMRecordTask.cpp
@@ -16,13 +16,10 @@ RecordTask::RecordTask(const Task& parent, skiagm::GM* gm, SkBitmap reference)
{}
void RecordTask::draw() {
- using EXPERIMENTAL::SkRecording;
- using EXPERIMENTAL::SkPlayback;
-
// Record the GM into an SkRecord.
- SkRecording* recording = SkRecording::Create(fReference.width(), fReference.height());
- fGM->draw(recording->canvas());
- SkAutoTDelete<const SkPlayback> playback(SkRecording::Delete(recording));
+ EXPERIMENTAL::SkRecording recording(fReference.width(), fReference.height());
+ fGM->draw(recording.canvas());
+ SkAutoTDelete<const EXPERIMENTAL::SkPlayback> playback(recording.releasePlayback());
// Draw the SkRecord back into a bitmap.
SkBitmap bitmap;
« no previous file with comments | « no previous file | include/record/SkRecording.h » ('j') | include/record/SkRecording.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698