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

Side by Side Diff: src/animator/SkMemberInfo.h

Issue 815883002: Cleanup: Another round of override fixes. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: revert include changes Created 6 years 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/animator/SkDump.h ('k') | src/animator/SkPostParts.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 SkMemberInfo_DEFINED 10 #ifndef SkMemberInfo_DEFINED
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 #define SK_MEMBER_PROPERTY(_member, _type) \ 143 #define SK_MEMBER_PROPERTY(_member, _type) \
144 {#_member, (size_t) (-1 - SK_PROPERTY(_member)), SkType_MemberProperty, \ 144 {#_member, (size_t) (-1 - SK_PROPERTY(_member)), SkType_MemberProperty, \
145 (int) SkType_##_type } 145 (int) SkType_##_type }
146 146
147 #if SK_USE_CONDENSED_INFO == 0 147 #if SK_USE_CONDENSED_INFO == 0
148 148
149 #define DECLARE_PRIVATE_MEMBER_INFO(_type) \ 149 #define DECLARE_PRIVATE_MEMBER_INFO(_type) \
150 public: \ 150 public: \
151 static const SkMemberInfo fInfo[]; \ 151 static const SkMemberInfo fInfo[]; \
152 static const int fInfoCount; \ 152 static const int fInfoCount; \
153 virtual const SkMemberInfo* getMember(int index); \ 153 virtual const SkMemberInfo* getMember(int index) SK_OVERRIDE; \
154 virtual const SkMemberInfo* getMember(const char name[]); \ 154 virtual const SkMemberInfo* getMember(const char name[]) SK_OVERRIDE; \
155 typedef Sk##_type BASE_CLASS 155 typedef Sk##_type BASE_CLASS
156 156
157 #define DECLARE_MEMBER_INFO(_type) \ 157 #define DECLARE_MEMBER_INFO(_type) \
158 public: \ 158 public: \
159 static const SkMemberInfo fInfo[]; \ 159 static const SkMemberInfo fInfo[]; \
160 static const int fInfoCount; \ 160 static const int fInfoCount; \
161 virtual const SkMemberInfo* getMember(int index); \ 161 virtual const SkMemberInfo* getMember(int index) SK_OVERRIDE; \
162 virtual const SkMemberInfo* getMember(const char name[]); \ 162 virtual const SkMemberInfo* getMember(const char name[]) SK_OVERRIDE; \
163 virtual SkDisplayTypes getType() const { return SkType_##_type; } \ 163 virtual SkDisplayTypes getType() const SK_OVERRIDE { return SkType_##_type; } \
164 typedef Sk##_type BASE_CLASS 164 typedef Sk##_type BASE_CLASS
165 165
166 #define DECLARE_DRAW_MEMBER_INFO(_type) \ 166 #define DECLARE_DRAW_MEMBER_INFO(_type) \
167 public: \ 167 public: \
168 static const SkMemberInfo fInfo[]; \ 168 static const SkMemberInfo fInfo[]; \
169 static const int fInfoCount; \ 169 static const int fInfoCount; \
170 virtual const SkMemberInfo* getMember(int index); \ 170 virtual const SkMemberInfo* getMember(int index) SK_OVERRIDE; \
171 virtual const SkMemberInfo* getMember(const char name[]); \ 171 virtual const SkMemberInfo* getMember(const char name[]) SK_OVERRIDE; \
172 virtual SkDisplayTypes getType() const { return SkType_##_type; } \ 172 virtual SkDisplayTypes getType() const SK_OVERRIDE { return SkType_##_type; } \
173 typedef SkDraw##_type BASE_CLASS 173 typedef SkDraw##_type BASE_CLASS
174 174
175 #define DECLARE_DISPLAY_MEMBER_INFO(_type) \ 175 #define DECLARE_DISPLAY_MEMBER_INFO(_type) \
176 public: \ 176 public: \
177 static const SkMemberInfo fInfo[]; \ 177 static const SkMemberInfo fInfo[]; \
178 static const int fInfoCount; \ 178 static const int fInfoCount; \
179 virtual const SkMemberInfo* getMember(int index); \ 179 virtual const SkMemberInfo* getMember(int index) SK_OVERRIDE; \
180 virtual const SkMemberInfo* getMember(const char name[]); \ 180 virtual const SkMemberInfo* getMember(const char name[]) SK_OVERRIDE; \
181 virtual SkDisplayTypes getType() const { return SkType_##_type; } \ 181 virtual SkDisplayTypes getType() const SK_OVERRIDE { return SkType_##_type; } \
182 typedef SkDisplay##_type BASE_CLASS 182 typedef SkDisplay##_type BASE_CLASS
183 183
184 #define DECLARE_EMPTY_MEMBER_INFO(_type) \ 184 #define DECLARE_EMPTY_MEMBER_INFO(_type) \
185 public: \ 185 public: \
186 virtual SkDisplayTypes getType() const { return SkType_##_type; } 186 virtual SkDisplayTypes getType() const { return SkType_##_type; }
187 187
188 #define DECLARE_EXTRAS_MEMBER_INFO(_type) \ 188 #define DECLARE_EXTRAS_MEMBER_INFO(_type) \
189 public: \ 189 public: \
190 static const SkMemberInfo fInfo[]; \ 190 static const SkMemberInfo fInfo[]; \
191 static const int fInfoCount; \ 191 static const int fInfoCount; \
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 #define DECLARE_NO_VIRTUALS_MEMBER_INFO(_type) \ 261 #define DECLARE_NO_VIRTUALS_MEMBER_INFO(_type) \
262 public: \ 262 public: \
263 typedef Sk##_type BASE_CLASS 263 typedef Sk##_type BASE_CLASS
264 264
265 #define DEFINE_GET_MEMBER(_class) 265 #define DEFINE_GET_MEMBER(_class)
266 #define DEFINE_NO_VIRTUALS_GET_MEMBER(_class) 266 #define DEFINE_NO_VIRTUALS_GET_MEMBER(_class)
267 267
268 #endif 268 #endif
269 269
270 #endif // SkMemberInfo_DEFINED 270 #endif // SkMemberInfo_DEFINED
OLDNEW
« no previous file with comments | « src/animator/SkDump.h ('k') | src/animator/SkPostParts.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698