| OLD | NEW |
| (Empty) |
| 1 /* | |
| 2 * Copyright 2006 The Android Open Source Project | |
| 3 * | |
| 4 * Use of this source code is governed by a BSD-style license that can be | |
| 5 * found in the LICENSE file. | |
| 6 */ | |
| 7 | |
| 8 | |
| 9 #ifndef SkSVGMask_DEFINED | |
| 10 #define SkSVGMask_DEFINED | |
| 11 | |
| 12 #include "SkSVGGroup.h" | |
| 13 | |
| 14 class SkSVGMask : public SkSVGGroup { | |
| 15 DECLARE_SVG_INFO(Mask); | |
| 16 virtual bool isDef(); | |
| 17 virtual bool isNotDef(); | |
| 18 protected: | |
| 19 SkString f_height; | |
| 20 SkString f_maskUnits; | |
| 21 SkString f_width; | |
| 22 SkString f_x; | |
| 23 SkString f_y; | |
| 24 private: | |
| 25 typedef SkSVGGroup INHERITED; | |
| 26 }; | |
| 27 | |
| 28 #endif // SkSVGMask_DEFINED | |
| OLD | NEW |