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

Side by Side Diff: Source/core/css/CSSComputedStyleDeclaration.h

Issue 148523016: Move most of the [Pass]RefPtr's of CSSPrimitiveValue to our transition types. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Sync to latest change Created 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2004 Zack Rusin <zack@kde.org> 2 * Copyright (C) 2004 Zack Rusin <zack@kde.org>
3 * Copyright (C) 2004, 2005, 2006, 2008, 2012 Apple Inc. All rights reserved. 3 * Copyright (C) 2004, 2005, 2006, 2008, 2012 Apple Inc. All rights reserved.
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public 6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 virtual String cssText() const OVERRIDE; 96 virtual String cssText() const OVERRIDE;
97 virtual void setCSSText(const String&, ExceptionState&) OVERRIDE; 97 virtual void setCSSText(const String&, ExceptionState&) OVERRIDE;
98 virtual PassRefPtr<CSSValue> getPropertyCSSValueInternal(CSSPropertyID) OVER RIDE; 98 virtual PassRefPtr<CSSValue> getPropertyCSSValueInternal(CSSPropertyID) OVER RIDE;
99 virtual String getPropertyValueInternal(CSSPropertyID) OVERRIDE; 99 virtual String getPropertyValueInternal(CSSPropertyID) OVERRIDE;
100 virtual void setPropertyInternal(CSSPropertyID, const String& value, bool im portant, ExceptionState&) OVERRIDE; 100 virtual void setPropertyInternal(CSSPropertyID, const String& value, bool im portant, ExceptionState&) OVERRIDE;
101 101
102 virtual bool cssPropertyMatches(CSSPropertyID, const CSSValue*) const OVERRI DE; 102 virtual bool cssPropertyMatches(CSSPropertyID, const CSSValue*) const OVERRI DE;
103 103
104 PassRefPtr<CSSValue> valueForShadowData(const ShadowData&, const RenderStyle &, bool useSpread) const; 104 PassRefPtr<CSSValue> valueForShadowData(const ShadowData&, const RenderStyle &, bool useSpread) const;
105 PassRefPtr<CSSValue> valueForShadowList(const ShadowList*, const RenderStyle &, bool useSpread) const; 105 PassRefPtr<CSSValue> valueForShadowList(const ShadowList*, const RenderStyle &, bool useSpread) const;
106 PassRefPtr<CSSPrimitiveValue> currentColorOrValidColor(const RenderStyle&, c onst StyleColor&) const; 106 PassRefPtrWillBeRawPtr<CSSPrimitiveValue> currentColorOrValidColor(const Ren derStyle&, const StyleColor&) const;
107 PassRefPtrWillBeRawPtr<SVGPaint> adjustSVGPaintForCurrentColor(PassRefPtrWil lBeRawPtr<SVGPaint>, RenderStyle&) const; 107 PassRefPtrWillBeRawPtr<SVGPaint> adjustSVGPaintForCurrentColor(PassRefPtrWil lBeRawPtr<SVGPaint>, RenderStyle&) const;
108 108
109 PassRefPtr<CSSValue> valueForFilter(const RenderObject*, const RenderStyle&) const; 109 PassRefPtr<CSSValue> valueForFilter(const RenderObject*, const RenderStyle&) const;
110 110
111 PassRefPtrWillBeRawPtr<CSSValueList> valuesForShorthandProperty(const StyleP ropertyShorthand&) const; 111 PassRefPtrWillBeRawPtr<CSSValueList> valuesForShorthandProperty(const StyleP ropertyShorthand&) const;
112 PassRefPtrWillBeRawPtr<CSSValueList> valuesForSidesShorthand(const StyleProp ertyShorthand&) const; 112 PassRefPtrWillBeRawPtr<CSSValueList> valuesForSidesShorthand(const StyleProp ertyShorthand&) const;
113 PassRefPtrWillBeRawPtr<CSSValueList> valuesForBackgroundShorthand() const; 113 PassRefPtrWillBeRawPtr<CSSValueList> valuesForBackgroundShorthand() const;
114 PassRefPtrWillBeRawPtr<CSSValueList> valuesForGridShorthand(const StylePrope rtyShorthand&) const; 114 PassRefPtrWillBeRawPtr<CSSValueList> valuesForGridShorthand(const StylePrope rtyShorthand&) const;
115 115
116 RefPtr<Node> m_node; 116 RefPtr<Node> m_node;
117 PseudoId m_pseudoElementSpecifier; 117 PseudoId m_pseudoElementSpecifier;
118 bool m_allowVisitedStyle; 118 bool m_allowVisitedStyle;
119 unsigned m_refCount; 119 unsigned m_refCount;
120 }; 120 };
121 121
122 } // namespace WebCore 122 } // namespace WebCore
123 123
124 #endif // CSSComputedStyleDeclaration_h 124 #endif // CSSComputedStyleDeclaration_h
OLDNEW
« no previous file with comments | « Source/core/css/CSSBorderImageSliceValue.cpp ('k') | Source/core/css/CSSComputedStyleDeclaration.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698