| Index: Source/core/css/resolver/StyleBuilder.h
|
| diff --git a/Source/core/css/resolver/StyleBuilder.h b/Source/core/css/resolver/StyleBuilder.h
|
| index cd5e6bf28d166a947f64fa3c784d30179f8811eb..82214e7980b8be8e90ccf961a4aa19a3180b62d4 100644
|
| --- a/Source/core/css/resolver/StyleBuilder.h
|
| +++ b/Source/core/css/resolver/StyleBuilder.h
|
| @@ -38,17 +38,19 @@ namespace WebCore {
|
| class CSSValue;
|
| class Document;
|
| class RenderStyle;
|
| -class StyleResolver;
|
| class StyleResolverState;
|
|
|
| class StyleBuilder {
|
| public:
|
| - static bool applyProperty(CSSPropertyID, StyleResolver*, StyleResolverState&, CSSValue*, bool isInitial, bool isInherit);
|
| + static void applyProperty(CSSPropertyID, StyleResolverState&, CSSValue*);
|
|
|
| // This function contains the gigantic old switch-statement of properties inherited from
|
| // StyleResolver. Each property should be migrated over to a new StyleBuilder templated
|
| // function and removed from this code. Once they're all moved, this function can die.
|
| - static void oldApplyProperty(CSSPropertyID, StyleResolver*, StyleResolverState&, CSSValue*, bool isInitial, bool isInherit);
|
| + static void oldApplyProperty(CSSPropertyID, StyleResolverState&, CSSValue*, bool isInitial, bool isInherit);
|
| +
|
| +private:
|
| + static bool applyProperty(CSSPropertyID, StyleResolverState&, CSSValue*, bool isInitial, bool isInherit);
|
| };
|
|
|
| }
|
|
|