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

Side by Side Diff: src/core/SkPicturePlayback.h

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 unified diff | Download patch
OLDNEW
1 1
2 /* 2 /*
3 * Copyright 2011 Google Inc. 3 * Copyright 2011 Google Inc.
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 #ifndef SkPicturePlayback_DEFINED 9 #ifndef SkPicturePlayback_DEFINED
10 #define SkPicturePlayback_DEFINED 10 #define SkPicturePlayback_DEFINED
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 71
72 bool initialized; 72 bool initialized;
73 SkChunkFlatController controller; 73 SkChunkFlatController controller;
74 SkTDArray<SkFlatData*> paintData; 74 SkTDArray<SkFlatData*> paintData;
75 }; 75 };
76 76
77 class SkPicturePlayback { 77 class SkPicturePlayback {
78 public: 78 public:
79 SkPicturePlayback(const SkPicture* picture, const SkPicturePlayback& src, 79 SkPicturePlayback(const SkPicture* picture, const SkPicturePlayback& src,
80 SkPictCopyInfo* deepCopyInfo = NULL); 80 SkPictCopyInfo* deepCopyInfo = NULL);
81 SkPicturePlayback(const SkPicture* picture, const SkPictureRecord& record, c onst SkPictInfo&, 81 SkPicturePlayback(const SkPicture* picture, const SkPictureRecord& record, c onst SkPictInfo&);
82 bool deepCopy = false);
83 static SkPicturePlayback* CreateFromStream(SkPicture* picture, 82 static SkPicturePlayback* CreateFromStream(SkPicture* picture,
84 SkStream*, 83 SkStream*,
85 const SkPictInfo&, 84 const SkPictInfo&,
86 SkPicture::InstallPixelRefProc); 85 SkPicture::InstallPixelRefProc);
87 static SkPicturePlayback* CreateFromBuffer(SkPicture* picture, 86 static SkPicturePlayback* CreateFromBuffer(SkPicture* picture,
88 SkReadBuffer&, 87 SkReadBuffer&,
89 const SkPictInfo&); 88 const SkPictInfo&);
90 89
91 virtual ~SkPicturePlayback(); 90 virtual ~SkPicturePlayback();
92 91
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 static void WriteFactories(SkWStream* stream, const SkFactorySet& rec); 346 static void WriteFactories(SkWStream* stream, const SkFactorySet& rec);
348 static void WriteTypefaces(SkWStream* stream, const SkRefCntSet& rec); 347 static void WriteTypefaces(SkWStream* stream, const SkRefCntSet& rec);
349 348
350 #ifdef SK_BUILD_FOR_ANDROID 349 #ifdef SK_BUILD_FOR_ANDROID
351 SkMutex fDrawMutex; 350 SkMutex fDrawMutex;
352 bool fAbortCurrentPlayback; 351 bool fAbortCurrentPlayback;
353 #endif 352 #endif
354 }; 353 };
355 354
356 #endif 355 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698