HomeSort by relevance Sort by last modified time
    Searched defs:SVGPaint (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPaint.cpp 23 #include "core/svg/SVGPaint.h"
32 SVGPaint::SVGPaint(const SVGPaintType& paintType, const String& uri)
39 String SVGPaint::customCSSText() const
67 SVGPaint::SVGPaint(const SVGPaint& cloneFrom)
75 PassRefPtrWillBeRawPtr<SVGPaint> SVGPaint::cloneForCSSOM() const
77 return adoptRefWillBeNoop(new SVGPaint(*this))
    [all...]
SVGPaint.h 33 class SVGPaint : public CSSValue {
48 static PassRefPtrWillBeRawPtr<SVGPaint> createUnknown()
50 return adoptRefWillBeNoop(new SVGPaint(SVG_PAINTTYPE_UNKNOWN));
53 static PassRefPtrWillBeRawPtr<SVGPaint> createNone()
55 return adoptRefWillBeNoop(new SVGPaint(SVG_PAINTTYPE_NONE));
58 static PassRefPtrWillBeRawPtr<SVGPaint> createCurrentColor()
60 return adoptRefWillBeNoop(new SVGPaint(SVG_PAINTTYPE_CURRENTCOLOR));
63 static PassRefPtrWillBeRawPtr<SVGPaint> createColor(const Color& color)
65 RefPtrWillBeRawPtr<SVGPaint> paint = adoptRefWillBeNoop(new SVGPaint(SVG_PAINTTYPE_RGBCOLOR))
    [all...]

Completed in 642 milliseconds