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

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

Issue 64293008: Wrap CSS length conversion arguments in an object (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: bool for useEffectiveZoom instead of -1 magic number Created 7 years, 1 month 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/CSSToStyleMap.h
diff --git a/Source/core/css/CSSToStyleMap.h b/Source/core/css/CSSToStyleMap.h
index e91646286ca7bda4b0f60d4198464e23a7e3eb83..d2b62b25c3ba306d35ef9604e736d2c01c00729c 100644
--- a/Source/core/css/CSSToStyleMap.h
+++ b/Source/core/css/CSSToStyleMap.h
@@ -29,8 +29,9 @@
namespace WebCore {
class FillLayer;
-class CSSValue;
class CSSAnimationData;
+class CSSToLengthConversionData;
+class CSSValue;
class RenderStyle;
class StyleImage;
class StyleResolverState;
@@ -76,7 +77,7 @@ public:
private:
const RenderStyle* style() const;
alancutter (OOO until 2018) 2013/11/27 09:30:58 The style() method can probably be removed from CS
Timothy Loh 2013/11/28 03:41:53 Done.
- const RenderStyle* rootElementStyle() const;
+ const CSSToLengthConversionData& cssToLengthConversionData() const;
bool useSVGZoomRules() const;
PassRefPtr<StyleImage> styleImage(CSSPropertyID, CSSValue*);

Powered by Google App Engine
This is Rietveld 408576698