Commit 8d73fa62 authored by rune@opera.com's avatar rune@opera.com

Remove unused mask and background methods.

Bumped into these methods while investigating background layers. They were
not in use.

Review URL: https://codereview.chromium.org/310623002

git-svn-id: svn://svn.chromium.org/blink/trunk@175275 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent 3bb0480b
...@@ -1132,9 +1132,6 @@ public: ...@@ -1132,9 +1132,6 @@ public:
void setWordSpacing(float); void setWordSpacing(float);
void setLetterSpacing(float); void setLetterSpacing(float);
void clearBackgroundLayers() { m_background.access()->m_background = FillLayer(BackgroundFillLayer); }
void inheritBackgroundLayers(const FillLayer& parent) { m_background.access()->m_background = parent; }
void adjustBackgroundLayers() void adjustBackgroundLayers()
{ {
if (backgroundLayers()->next()) { if (backgroundLayers()->next()) {
...@@ -1143,9 +1140,6 @@ public: ...@@ -1143,9 +1140,6 @@ public:
} }
} }
void clearMaskLayers() { rareNonInheritedData.access()->m_mask = FillLayer(MaskFillLayer); }
void inheritMaskLayers(const FillLayer& parent) { rareNonInheritedData.access()->m_mask = parent; }
void adjustMaskLayers() void adjustMaskLayers()
{ {
if (maskLayers()->next()) { if (maskLayers()->next()) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment