Chromium Code Reviews| Index: third_party/WebKit/Source/core/svg/SVGClipPathElement.h | 
| diff --git a/third_party/WebKit/Source/core/svg/SVGClipPathElement.h b/third_party/WebKit/Source/core/svg/SVGClipPathElement.h | 
| index aa54c02b592dd8d323f3d0186f984a6bb3cef2d0..c08fba633bbba4dc256e65ca8aae20b0635b5012 100644 | 
| --- a/third_party/WebKit/Source/core/svg/SVGClipPathElement.h | 
| +++ b/third_party/WebKit/Source/core/svg/SVGClipPathElement.h | 
| @@ -36,6 +36,13 @@ class SVGClipPathElement final : public SVGGraphicsElement { | 
| public: | 
| DECLARE_NODE_FACTORY(SVGClipPathElement); | 
| + | 
| + enum { | 
| + kSvgUnitTypeUnknown = SVGUnitTypes::kSvgUnitTypeUnknown, | 
| 
 
foolip
2016/10/17 12:09:54
If the enum is moved from SVGUnitTypes.h to the mo
 
fs
2016/10/17 12:40:21
That ought to do it from a scoping perspective, ye
 
 | 
| + kSvgUnitTypeUserspaceonuse = SVGUnitTypes::kSvgUnitTypeUserspaceonuse, | 
| + kSvgUnitTypeObjectboundingbox = SVGUnitTypes::kSvgUnitTypeObjectboundingbox | 
| + }; | 
| + | 
| SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType>* clipPathUnits() { | 
| return m_clipPathUnits.get(); | 
| } |