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

Side by Side Diff: src/lazy/SkDiscardablePixelRef.h

Issue 1123573004: Update src/svg to follow C++11 style rule for {virtual,override}. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 7 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 | « no previous file | src/svg/SkSVGDevice.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 /* 1 /*
2 * Copyright 2013 Google Inc. 2 * Copyright 2013 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #ifndef SkDiscardablePixelRef_DEFINED 8 #ifndef SkDiscardablePixelRef_DEFINED
9 #define SkDiscardablePixelRef_DEFINED 9 #define SkDiscardablePixelRef_DEFINED
10 10
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 42
43 SkDiscardableMemory* fDiscardableMemory; 43 SkDiscardableMemory* fDiscardableMemory;
44 bool fDiscardableMemoryIsLocked; 44 bool fDiscardableMemoryIsLocked;
45 SkAutoTUnref<SkColorTable> fCTable; 45 SkAutoTUnref<SkColorTable> fCTable;
46 46
47 /* Takes ownership of SkImageGenerator. */ 47 /* Takes ownership of SkImageGenerator. */
48 SkDiscardablePixelRef(const SkImageInfo&, SkImageGenerator*, 48 SkDiscardablePixelRef(const SkImageInfo&, SkImageGenerator*,
49 size_t rowBytes, 49 size_t rowBytes,
50 SkDiscardableMemory::Factory* factory); 50 SkDiscardableMemory::Factory* factory);
51 51
52 virtual bool onGetYUV8Planes(SkISize sizes[3], 52 bool onGetYUV8Planes(SkISize sizes[3],
53 void* planes[3], 53 void* planes[3],
54 size_t rowBytes[3], 54 size_t rowBytes[3],
55 SkYUVColorSpace* colorSpace) override { 55 SkYUVColorSpace* colorSpace) override {
56 // If the image was already decoded with lockPixels(), favor not 56 // If the image was already decoded with lockPixels(), favor not
57 // re-decoding to YUV8 planes. 57 // re-decoding to YUV8 planes.
58 if (fDiscardableMemory) { 58 if (fDiscardableMemory) {
59 return false; 59 return false;
60 } 60 }
61 return fGenerator->getYUV8Planes(sizes, planes, rowBytes, colorSpace); 61 return fGenerator->getYUV8Planes(sizes, planes, rowBytes, colorSpace);
62 } 62 }
63 63
64 friend bool SkInstallDiscardablePixelRef(SkImageGenerator*, SkBitmap*, 64 friend bool SkInstallDiscardablePixelRef(SkImageGenerator*, SkBitmap*,
65 SkDiscardableMemory::Factory*); 65 SkDiscardableMemory::Factory*);
66 66
67 typedef SkPixelRef INHERITED; 67 typedef SkPixelRef INHERITED;
68 }; 68 };
69 69
70 #endif // SkDiscardablePixelRef_DEFINED 70 #endif // SkDiscardablePixelRef_DEFINED
OLDNEW
« no previous file with comments | « no previous file | src/svg/SkSVGDevice.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698