| OLD | NEW |
| 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 #include "SkSVGGroup.h" | 10 #include "SkSVGGroup.h" |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 } | 36 } |
| 37 | 37 |
| 38 bool SkSVGGroup::isNotDef() { | 38 bool SkSVGGroup::isNotDef() { |
| 39 return fParent ? fParent->isNotDef() : false; | 39 return fParent ? fParent->isNotDef() : false; |
| 40 } | 40 } |
| 41 | 41 |
| 42 void SkSVGGroup::translate(SkSVGParser& parser, bool defState) { | 42 void SkSVGGroup::translate(SkSVGParser& parser, bool defState) { |
| 43 for (SkSVGElement** ptr = fChildren.begin(); ptr < fChildren.end(); ptr++) | 43 for (SkSVGElement** ptr = fChildren.begin(); ptr < fChildren.end(); ptr++) |
| 44 parser.translate(*ptr, defState); | 44 parser.translate(*ptr, defState); |
| 45 } | 45 } |
| OLD | NEW |