| Index: experimental/svg/model/SkSVGAttribute.cpp
|
| diff --git a/experimental/svg/model/SkSVGAttribute.cpp b/experimental/svg/model/SkSVGAttribute.cpp
|
| index c4a374e7e11fabf16f8225ca459a4ea864d18e2c..79c355176f58a03fa9672a16430cf18f97744565 100644
|
| --- a/experimental/svg/model/SkSVGAttribute.cpp
|
| +++ b/experimental/svg/model/SkSVGAttribute.cpp
|
| @@ -12,12 +12,12 @@ SkSVGPresentationAttributes::SkSVGPresentationAttributes()
|
| : fFillIsSet(false)
|
| , fStrokeIsSet(false) { }
|
|
|
| -void SkSVGPresentationAttributes::setFill(SkColor c) {
|
| +void SkSVGPresentationAttributes::setFill(const SkSVGColor& c) {
|
| fFill = c;
|
| fFillIsSet = true;
|
| }
|
|
|
| -void SkSVGPresentationAttributes::setStroke(SkColor c) {
|
| +void SkSVGPresentationAttributes::setStroke(const SkSVGColor& c) {
|
| fStroke = c;
|
| fStrokeIsSet = true;
|
| }
|
|
|