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

Unified Diff: Source/core/css/CSSGradientValue.h

Issue 899163003: Move rendering/RenderObject to layout/LayoutObject. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: Source/core/css/CSSGradientValue.h
diff --git a/Source/core/css/CSSGradientValue.h b/Source/core/css/CSSGradientValue.h
index 1eb5eaf81f6e49f8a4817abe8c44eca65b7f1215..71a45e5a61338170b67316f4648be5e19308888a 100644
--- a/Source/core/css/CSSGradientValue.h
+++ b/Source/core/css/CSSGradientValue.h
@@ -83,7 +83,7 @@ namespace blink {
class CSSGradientValue : public CSSImageGeneratorValue {
public:
- PassRefPtr<Image> image(RenderObject*, const IntSize&);
+ PassRefPtr<Image> image(LayoutObject*, const IntSize&);
void setFirstX(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> val) { m_firstX = val; }
void setFirstY(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> val) { m_firstY = val; }
@@ -103,10 +103,10 @@ public:
CSSGradientType gradientType() const { return m_gradientType; }
bool isFixedSize() const { return false; }
- IntSize fixedSize(const RenderObject*) const { return IntSize(); }
+ IntSize fixedSize(const LayoutObject*) const { return IntSize(); }
bool isPending() const { return false; }
- bool knownToBeOpaque(const RenderObject*) const;
+ bool knownToBeOpaque(const LayoutObject*) const;
void loadSubimages(ResourceFetcher*) { }
@@ -134,7 +134,7 @@ protected:
{
}
- void addStops(Gradient*, const CSSToLengthConversionData&, float maxLengthForRepeat, const RenderObject&);
+ void addStops(Gradient*, const CSSToLengthConversionData&, float maxLengthForRepeat, const LayoutObject&);
// Resolve points/radii to front end values.
FloatPoint computeEndPoint(CSSPrimitiveValue*, CSSPrimitiveValue*, const CSSToLengthConversionData&, const IntSize&);
@@ -170,7 +170,7 @@ public:
String customCSSText() const;
// Create the gradient for a given size.
- PassRefPtr<Gradient> createGradient(const CSSToLengthConversionData&, const IntSize&, const RenderObject&);
+ PassRefPtr<Gradient> createGradient(const CSSToLengthConversionData&, const IntSize&, const LayoutObject&);
PassRefPtrWillBeRawPtr<CSSLinearGradientValue> clone() const
{
@@ -222,7 +222,7 @@ public:
void setEndVerticalSize(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> val) { m_endVerticalSize = val; }
// Create the gradient for a given size.
- PassRefPtr<Gradient> createGradient(const CSSToLengthConversionData&, const IntSize&, const RenderObject&);
+ PassRefPtr<Gradient> createGradient(const CSSToLengthConversionData&, const IntSize&, const LayoutObject&);
bool equals(const CSSRadialGradientValue&) const;

Powered by Google App Engine
This is Rietveld 408576698