HomeSort by relevance Sort by last modified time
    Searched defs:CSSToLengthConversionData (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSToLengthConversionData.cpp 32 #include "core/css/CSSToLengthConversionData.h"
39 CSSToLengthConversionData::CSSToLengthConversionData(const RenderStyle* style, const RenderStyle* rootStyle, const RenderView* renderView, float zoom, bool computingFontSize)
51 CSSToLengthConversionData::CSSToLengthConversionData(const RenderStyle* style, const RenderStyle* rootStyle, const RenderView* renderView, bool computingFontSize)
61 CSSToLengthConversionData::CSSToLengthConversionData(const RenderStyle* style, const RenderStyle* rootStyle, float viewportWidth, float viewportHeight, float zoom, bool computingFontSize)
73 float CSSToLengthConversionData::zoom() const
80 double CSSToLengthConversionData::viewportWidthPercent() const
85 double CSSToLengthConversionData::viewportHeightPercent() cons
    [all...]
CSSToLengthConversionData.h 42 class CSSToLengthConversionData {
44 CSSToLengthConversionData(const RenderStyle* currStyle, const RenderStyle* rootStyle, const RenderView*, float zoom, bool computingFontSize = false);
45 CSSToLengthConversionData(const RenderStyle* currStyle, const RenderStyle* rootStyle, const RenderView*, bool computingFontSize = false);
46 CSSToLengthConversionData(const RenderStyle* currStyle, const RenderStyle* rootStyle, float viewportWidth, float viewportHeight, float zoom, bool computingFontSize = false);
62 CSSToLengthConversionData copyWithAdjustedZoom(float newZoom) const
64 return CSSToLengthConversionData(m_style, m_rootStyle, m_viewportWidth, m_viewportHeight, newZoom, m_computingFontSize);

Completed in 43 milliseconds