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

Unified Diff: src/core/SkPicture.cpp

Issue 324093003: Remove unused 'deepCopy' parameter (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 6 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 | « include/core/SkPicture.h ('k') | src/core/SkPicturePlayback.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/core/SkPicture.cpp
diff --git a/src/core/SkPicture.cpp b/src/core/SkPicture.cpp
index 2fff238e94c07e8d7d78e513de4b911af0e83a78..c2c8aaf57251e8851ca7bc124875a985ef47fa51 100644
--- a/src/core/SkPicture.cpp
+++ b/src/core/SkPicture.cpp
@@ -134,11 +134,10 @@ SkPicture::SkPicture()
// Unfortunately, it does not include the restoreToCount of a real endRecording
// call.
SkPicturePlayback* SkPicture::FakeEndRecording(const SkPicture* resourceSrc,
scroggo 2014/06/10 14:58:04 As I asked in https://codereview.chromium.org/3160
robertphillips 2014/06/10 15:00:09 This entry point is going away entirely (replaced
scroggo 2014/06/10 15:00:44 sgtm. Thanks for the explanation.
- const SkPictureRecord& record,
- bool deepCopy) {
+ const SkPictureRecord& record) {
SkPictInfo info;
resourceSrc->createHeader(&info);
- return SkNEW_ARGS(SkPicturePlayback, (resourceSrc, record, info, deepCopy));
+ return SkNEW_ARGS(SkPicturePlayback, (resourceSrc, record, info));
}
SkPicture::SkPicture(const SkPicture& src)
« no previous file with comments | « include/core/SkPicture.h ('k') | src/core/SkPicturePlayback.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698