| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 &SVGNames::cxAttr, | 82 &SVGNames::cxAttr, |
| 83 &SVGNames::cyAttr, | 83 &SVGNames::cyAttr, |
| 84 &SVGNames::dAttr, | 84 &SVGNames::dAttr, |
| 85 &SVGNames::diffuseConstantAttr, | 85 &SVGNames::diffuseConstantAttr, |
| 86 &SVGNames::divisorAttr, | 86 &SVGNames::divisorAttr, |
| 87 &SVGNames::dxAttr, | 87 &SVGNames::dxAttr, |
| 88 &SVGNames::dyAttr, | 88 &SVGNames::dyAttr, |
| 89 &SVGNames::edgeModeAttr, | 89 &SVGNames::edgeModeAttr, |
| 90 &SVGNames::elevationAttr, | 90 &SVGNames::elevationAttr, |
| 91 &SVGNames::exponentAttr, | 91 &SVGNames::exponentAttr, |
| 92 &SVGNames::filterResAttr, | |
| 93 &SVGNames::filterUnitsAttr, | 92 &SVGNames::filterUnitsAttr, |
| 94 &SVGNames::fxAttr, | 93 &SVGNames::fxAttr, |
| 95 &SVGNames::fyAttr, | 94 &SVGNames::fyAttr, |
| 96 &SVGNames::gradientTransformAttr, | 95 &SVGNames::gradientTransformAttr, |
| 97 &SVGNames::gradientUnitsAttr, | 96 &SVGNames::gradientUnitsAttr, |
| 98 &SVGNames::heightAttr, | 97 &SVGNames::heightAttr, |
| 99 &SVGNames::in2Attr, | 98 &SVGNames::in2Attr, |
| 100 &SVGNames::inAttr, | 99 &SVGNames::inAttr, |
| 101 &SVGNames::interceptAttr, | 100 &SVGNames::interceptAttr, |
| 102 &SVGNames::k1Attr, | 101 &SVGNames::k1Attr, |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 285 PassRefPtrWillBeRawPtr<EffectModel> EffectInput::convert(Element* element, const
EffectModelOrDictionarySequence& effectInput, ExceptionState& exceptionState) | 284 PassRefPtrWillBeRawPtr<EffectModel> EffectInput::convert(Element* element, const
EffectModelOrDictionarySequence& effectInput, ExceptionState& exceptionState) |
| 286 { | 285 { |
| 287 if (effectInput.isEffectModel()) | 286 if (effectInput.isEffectModel()) |
| 288 return effectInput.getAsEffectModel(); | 287 return effectInput.getAsEffectModel(); |
| 289 if (effectInput.isDictionarySequence()) | 288 if (effectInput.isDictionarySequence()) |
| 290 return convert(element, effectInput.getAsDictionarySequence(), exception
State); | 289 return convert(element, effectInput.getAsDictionarySequence(), exception
State); |
| 291 return nullptr; | 290 return nullptr; |
| 292 } | 291 } |
| 293 | 292 |
| 294 } // namespace blink | 293 } // namespace blink |
| OLD | NEW |