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

Side by Side Diff: Source/core/animation/EffectInput.cpp

Issue 1153403003: Remove SVGFilterElement's filterRes* attributes and setFilterRes() (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase + updated smallFonts.svg and textFeatures.svg Created 5 years, 6 months 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 | Annotate | Revision Log
« no previous file with comments | « PerformanceTests/Parser/resources/html5.html ('k') | Source/core/frame/UseCounter.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 * 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
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
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
OLDNEW
« no previous file with comments | « PerformanceTests/Parser/resources/html5.html ('k') | Source/core/frame/UseCounter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698