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

Side by Side Diff: include/core/SkPathEffect.h

Issue 806653007: Fix up all the easy virtual ... SK_OVERRIDE cases. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase Created 5 years, 11 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 | « include/core/SkMallocPixelRef.h ('k') | include/core/SkShader.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 /* 2 /*
3 * Copyright 2006 The Android Open Source Project 3 * Copyright 2006 The Android Open Source Project
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 SkPathEffect_DEFINED 10 #ifndef SkPathEffect_DEFINED
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 including flattening them. It does nothing in filterPath, and is only useful 150 including flattening them. It does nothing in filterPath, and is only useful
151 for managing the lifetimes of its two arguments. 151 for managing the lifetimes of its two arguments.
152 */ 152 */
153 class SkPairPathEffect : public SkPathEffect { 153 class SkPairPathEffect : public SkPathEffect {
154 public: 154 public:
155 virtual ~SkPairPathEffect(); 155 virtual ~SkPairPathEffect();
156 156
157 protected: 157 protected:
158 SkPairPathEffect(SkPathEffect* pe0, SkPathEffect* pe1); 158 SkPairPathEffect(SkPathEffect* pe0, SkPathEffect* pe1);
159 159
160 virtual void flatten(SkWriteBuffer&) const SK_OVERRIDE; 160 void flatten(SkWriteBuffer&) const SK_OVERRIDE;
161 161
162 // these are visible to our subclasses 162 // these are visible to our subclasses
163 SkPathEffect* fPE0, *fPE1; 163 SkPathEffect* fPE0, *fPE1;
164 164
165 private: 165 private:
166 typedef SkPathEffect INHERITED; 166 typedef SkPathEffect INHERITED;
167 }; 167 };
168 168
169 /** \class SkComposePathEffect 169 /** \class SkComposePathEffect
170 170
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 226
227 private: 227 private:
228 // illegal 228 // illegal
229 SkSumPathEffect(const SkSumPathEffect&); 229 SkSumPathEffect(const SkSumPathEffect&);
230 SkSumPathEffect& operator=(const SkSumPathEffect&); 230 SkSumPathEffect& operator=(const SkSumPathEffect&);
231 231
232 typedef SkPairPathEffect INHERITED; 232 typedef SkPairPathEffect INHERITED;
233 }; 233 };
234 234
235 #endif 235 #endif
OLDNEW
« no previous file with comments | « include/core/SkMallocPixelRef.h ('k') | include/core/SkShader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698