Searched refs:m_legacyPrinting (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/rendering/
H A DRenderView.h150 int bestTruncatedAt() const { return m_legacyPrinting.m_bestTruncatedAt; }
152 int truncatedAt() const { return m_legacyPrinting.m_truncatedAt; }
155 m_legacyPrinting.m_truncatedAt = y;
156 m_legacyPrinting.m_bestTruncatedAt = 0;
157 m_legacyPrinting.m_truncatorWidth = 0;
158 m_legacyPrinting.m_forcedPageBreak = false;
160 const IntRect& printRect() const { return m_legacyPrinting.m_printRect; }
161 void setPrintRect(const IntRect& r) { m_legacyPrinting.m_printRect = r; }
235 LegacyPrinting m_legacyPrinting; member in class:WebCore::RenderView
H A DRenderView.cpp765 if (m_legacyPrinting.m_forcedPageBreak)
770 m_legacyPrinting.m_forcedPageBreak = true;
771 m_legacyPrinting.m_bestTruncatedAt = y;
777 if (boundingBox.width() > m_legacyPrinting.m_truncatorWidth) {
778 m_legacyPrinting.m_truncatorWidth = boundingBox.width();
779 m_legacyPrinting.m_bestTruncatedAt = y;

Completed in 113 milliseconds