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

Side by Side Diff: src/pdf/SkPDFShader.h

Issue 1773033002: SkPDF: use sk_make_sp<T> when it makes sense. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 2016-03-08 (Tuesday) 06:54:33 EST Created 4 years, 9 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 | « src/pdf/SkPDFResourceDict.cpp ('k') | src/pdf/SkPDFShader.cpp » ('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 /* 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 9
10 #ifndef SkPDFShader_DEFINED 10 #ifndef SkPDFShader_DEFINED
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 */ 44 */
45 static SkPDFObject* GetPDFShader(SkPDFCanon* canon, 45 static SkPDFObject* GetPDFShader(SkPDFCanon* canon,
46 SkScalar dpi, 46 SkScalar dpi,
47 const SkShader& shader, 47 const SkShader& shader,
48 const SkMatrix& matrix, 48 const SkMatrix& matrix,
49 const SkIRect& surfaceBBox, 49 const SkIRect& surfaceBBox,
50 SkScalar rasterScale); 50 SkScalar rasterScale);
51 }; 51 };
52 52
53 class SkPDFFunctionShader final : public SkPDFDict { 53 class SkPDFFunctionShader final : public SkPDFDict {
54
55
56 public: 54 public:
57 static SkPDFFunctionShader* Create(SkPDFCanon*, 55 static SkPDFFunctionShader* Create(SkPDFCanon*,
58 SkAutoTDelete<SkPDFShader::State>*); 56 SkAutoTDelete<SkPDFShader::State>*);
59 virtual ~SkPDFFunctionShader(); 57 virtual ~SkPDFFunctionShader();
60 bool equals(const SkPDFShader::State&) const; 58 bool equals(const SkPDFShader::State&) const;
61 59
62 private: 60 private:
63 SkAutoTDelete<const SkPDFShader::State> fShaderState; 61 SkAutoTDelete<const SkPDFShader::State> fShaderState;
64 SkPDFFunctionShader(SkPDFShader::State*); 62 SkPDFFunctionShader(SkPDFShader::State*);
65 typedef SkPDFDict INHERITED; 63 typedef SkPDFDict INHERITED;
(...skipping 26 matching lines...) Expand all
92 virtual ~SkPDFImageShader(); 90 virtual ~SkPDFImageShader();
93 bool equals(const SkPDFShader::State&) const; 91 bool equals(const SkPDFShader::State&) const;
94 92
95 private: 93 private:
96 SkAutoTDelete<const SkPDFShader::State> fShaderState; 94 SkAutoTDelete<const SkPDFShader::State> fShaderState;
97 SkPDFImageShader(SkPDFShader::State*); 95 SkPDFImageShader(SkPDFShader::State*);
98 typedef SkPDFStream INHERITED; 96 typedef SkPDFStream INHERITED;
99 }; 97 };
100 98
101 #endif 99 #endif
OLDNEW
« no previous file with comments | « src/pdf/SkPDFResourceDict.cpp ('k') | src/pdf/SkPDFShader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698