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

Side by Side Diff: Source/core/rendering/style/RenderStyle.h

Issue 324063002: Remove unused method setZoomWithoutReturnValue (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org)
3 * (C) 2000 Antti Koivisto (koivisto@kde.org) 3 * (C) 2000 Antti Koivisto (koivisto@kde.org)
4 * (C) 2000 Dirk Mueller (mueller@kde.org) 4 * (C) 2000 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights reserved. 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights reserved.
6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) 6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com)
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 1104 matching lines...) Expand 10 before | Expand all | Expand 10 after
1115 void setTextJustify(TextJustify v) { SET_VAR(rareInheritedData, m_textJustif y, v); } 1115 void setTextJustify(TextJustify v) { SET_VAR(rareInheritedData, m_textJustif y, v); }
1116 void setTextTransform(ETextTransform v) { inherited_flags._text_transform = v; } 1116 void setTextTransform(ETextTransform v) { inherited_flags._text_transform = v; }
1117 void applyTextDecorations(); 1117 void applyTextDecorations();
1118 void clearAppliedTextDecorations(); 1118 void clearAppliedTextDecorations();
1119 void setTextDecoration(TextDecoration v) { SET_VAR(visual, textDecoration, v ); } 1119 void setTextDecoration(TextDecoration v) { SET_VAR(visual, textDecoration, v ); }
1120 void setTextUnderlinePosition(TextUnderlinePosition v) { SET_VAR(rareInherit edData, m_textUnderlinePosition, v); } 1120 void setTextUnderlinePosition(TextUnderlinePosition v) { SET_VAR(rareInherit edData, m_textUnderlinePosition, v); }
1121 void setTextDecorationStyle(TextDecorationStyle v) { SET_VAR(rareNonInherite dData, m_textDecorationStyle, v); } 1121 void setTextDecorationStyle(TextDecorationStyle v) { SET_VAR(rareNonInherite dData, m_textDecorationStyle, v); }
1122 void setDirection(TextDirection v) { inherited_flags._direction = v; } 1122 void setDirection(TextDirection v) { inherited_flags._direction = v; }
1123 void setLineHeight(const Length& specifiedLineHeight); 1123 void setLineHeight(const Length& specifiedLineHeight);
1124 bool setZoom(float); 1124 bool setZoom(float);
1125 void setZoomWithoutReturnValue(float f) { setZoom(f); }
1126 bool setEffectiveZoom(float); 1125 bool setEffectiveZoom(float);
1127 1126
1128 void setImageRendering(EImageRendering v) { SET_VAR(rareInheritedData, m_ima geRendering, v); } 1127 void setImageRendering(EImageRendering v) { SET_VAR(rareInheritedData, m_ima geRendering, v); }
1129 1128
1130 void setWhiteSpace(EWhiteSpace v) { inherited_flags._white_space = v; } 1129 void setWhiteSpace(EWhiteSpace v) { inherited_flags._white_space = v; }
1131 1130
1132 // FIXME: Remove these two and replace them with respective FontBuilder call s. 1131 // FIXME: Remove these two and replace them with respective FontBuilder call s.
1133 void setWordSpacing(float); 1132 void setWordSpacing(float);
1134 void setLetterSpacing(float); 1133 void setLetterSpacing(float);
1135 1134
(...skipping 742 matching lines...) Expand 10 before | Expand all | Expand 10 after
1878 inline bool RenderStyle::hasPseudoElementStyle() const 1877 inline bool RenderStyle::hasPseudoElementStyle() const
1879 { 1878 {
1880 return noninherited_flags._pseudoBits & PSEUDO_ELEMENT_MASK; 1879 return noninherited_flags._pseudoBits & PSEUDO_ELEMENT_MASK;
1881 } 1880 }
1882 1881
1883 float calcBorderRadiiConstraintScaleFor(const FloatRect&, const FloatRoundedRect ::Radii&); 1882 float calcBorderRadiiConstraintScaleFor(const FloatRect&, const FloatRoundedRect ::Radii&);
1884 1883
1885 } // namespace WebCore 1884 } // namespace WebCore
1886 1885
1887 #endif // RenderStyle_h 1886 #endif // RenderStyle_h
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698