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

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

Issue 425763002: Remove unused and incorrect RenderStyle::initialTextEmphasisColor. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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 1644 matching lines...) Expand 10 before | Expand all | Expand 10 after
1655 static Length initialTransformOriginX() { return Length(50.0, Percent); } 1655 static Length initialTransformOriginX() { return Length(50.0, Percent); }
1656 static Length initialTransformOriginY() { return Length(50.0, Percent); } 1656 static Length initialTransformOriginY() { return Length(50.0, Percent); }
1657 static EPointerEvents initialPointerEvents() { return PE_AUTO; } 1657 static EPointerEvents initialPointerEvents() { return PE_AUTO; }
1658 static float initialTransformOriginZ() { return 0; } 1658 static float initialTransformOriginZ() { return 0; }
1659 static ETransformStyle3D initialTransformStyle3D() { return TransformStyle3D Flat; } 1659 static ETransformStyle3D initialTransformStyle3D() { return TransformStyle3D Flat; }
1660 static EBackfaceVisibility initialBackfaceVisibility() { return BackfaceVisi bilityVisible; } 1660 static EBackfaceVisibility initialBackfaceVisibility() { return BackfaceVisi bilityVisible; }
1661 static float initialPerspective() { return 0; } 1661 static float initialPerspective() { return 0; }
1662 static Length initialPerspectiveOriginX() { return Length(50.0, Percent); } 1662 static Length initialPerspectiveOriginX() { return Length(50.0, Percent); }
1663 static Length initialPerspectiveOriginY() { return Length(50.0, Percent); } 1663 static Length initialPerspectiveOriginY() { return Length(50.0, Percent); }
1664 static Color initialBackgroundColor() { return Color::transparent; } 1664 static Color initialBackgroundColor() { return Color::transparent; }
1665 static Color initialTextEmphasisColor() { return TextEmphasisFillFilled; }
1666 static TextEmphasisFill initialTextEmphasisFill() { return TextEmphasisFillF illed; } 1665 static TextEmphasisFill initialTextEmphasisFill() { return TextEmphasisFillF illed; }
1667 static TextEmphasisMark initialTextEmphasisMark() { return TextEmphasisMarkN one; } 1666 static TextEmphasisMark initialTextEmphasisMark() { return TextEmphasisMarkN one; }
1668 static const AtomicString& initialTextEmphasisCustomMark() { return nullAtom ; } 1667 static const AtomicString& initialTextEmphasisCustomMark() { return nullAtom ; }
1669 static TextEmphasisPosition initialTextEmphasisPosition() { return TextEmpha sisPositionOver; } 1668 static TextEmphasisPosition initialTextEmphasisPosition() { return TextEmpha sisPositionOver; }
1670 static RubyPosition initialRubyPosition() { return RubyPositionBefore; } 1669 static RubyPosition initialRubyPosition() { return RubyPositionBefore; }
1671 static LineBoxContain initialLineBoxContain() { return LineBoxContainBlock | LineBoxContainInline | LineBoxContainReplaced; } 1670 static LineBoxContain initialLineBoxContain() { return LineBoxContainBlock | LineBoxContainInline | LineBoxContainReplaced; }
1672 static ImageOrientationEnum initialImageOrientation() { return OriginTopLeft ; } 1671 static ImageOrientationEnum initialImageOrientation() { return OriginTopLeft ; }
1673 static EImageRendering initialImageRendering() { return ImageRenderingAuto; } 1672 static EImageRendering initialImageRendering() { return ImageRenderingAuto; }
1674 static ImageResolutionSource initialImageResolutionSource() { return ImageRe solutionSpecified; } 1673 static ImageResolutionSource initialImageResolutionSource() { return ImageRe solutionSpecified; }
1675 static ImageResolutionSnap initialImageResolutionSnap() { return ImageResolu tionNoSnap; } 1674 static ImageResolutionSnap initialImageResolutionSnap() { return ImageResolu tionNoSnap; }
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
1909 inline bool RenderStyle::hasPseudoElementStyle() const 1908 inline bool RenderStyle::hasPseudoElementStyle() const
1910 { 1909 {
1911 return noninherited_flags.pseudoBits & PSEUDO_ELEMENT_MASK; 1910 return noninherited_flags.pseudoBits & PSEUDO_ELEMENT_MASK;
1912 } 1911 }
1913 1912
1914 float calcBorderRadiiConstraintScaleFor(const FloatRect&, const FloatRoundedRect ::Radii&); 1913 float calcBorderRadiiConstraintScaleFor(const FloatRect&, const FloatRoundedRect ::Radii&);
1915 1914
1916 } // namespace blink 1915 } // namespace blink
1917 1916
1918 #endif // RenderStyle_h 1917 #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