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

Unified Diff: src/core/SkPicturePlayback.h

Issue 725143002: More SkPicture cleanup (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: newlines Created 6 years, 1 month 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 | « src/core/SkPicture.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/core/SkPicturePlayback.h
diff --git a/src/core/SkPicturePlayback.h b/src/core/SkPicturePlayback.h
index 9e5db08c6309ad74e6dd1039bd5cb9d9491d4c23..32d8c162a7d7d7157cda3d505634947b653cdba2 100644
--- a/src/core/SkPicturePlayback.h
+++ b/src/core/SkPicturePlayback.h
@@ -19,8 +19,8 @@ class SkPictureData;
// The basic picture playback class replays the provided picture into a canvas.
class SkPicturePlayback : SkNoncopyable {
public:
- SkPicturePlayback(const SkPicture* picture)
- : fPictureData(picture->fData.get())
+ SkPicturePlayback(const SkPictureData* data)
+ : fPictureData(data)
, fCurOffset(0) {
}
virtual ~SkPicturePlayback() { }
« no previous file with comments | « src/core/SkPicture.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698