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

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

Issue 265703012: Separate repaint and layout requirements of StyleDifference (Step 4) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 6 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/rendering/RenderObject.cpp ('k') | Source/core/rendering/style/RenderStyle.cpp » ('j') | 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 1761 matching lines...) Expand 10 before | Expand all | Expand 10 after
1772 1772
1773 Color colorIncludingFallback(int colorProperty, bool visitedLink) const; 1773 Color colorIncludingFallback(int colorProperty, bool visitedLink) const;
1774 1774
1775 Color stopColor() const { return svgStyle()->stopColor(); } 1775 Color stopColor() const { return svgStyle()->stopColor(); }
1776 Color floodColor() const { return svgStyle()->floodColor(); } 1776 Color floodColor() const { return svgStyle()->floodColor(); }
1777 Color lightingColor() const { return svgStyle()->lightingColor(); } 1777 Color lightingColor() const { return svgStyle()->lightingColor(); }
1778 1778
1779 void appendContent(PassOwnPtr<ContentData>); 1779 void appendContent(PassOwnPtr<ContentData>);
1780 void addAppliedTextDecoration(const AppliedTextDecoration&); 1780 void addAppliedTextDecoration(const AppliedTextDecoration&);
1781 1781
1782 bool diffNeedsFullLayoutAndRepaint(const RenderStyle& other) const;
1782 bool diffNeedsFullLayout(const RenderStyle& other) const; 1783 bool diffNeedsFullLayout(const RenderStyle& other) const;
1783 bool diffNeedsRepaintLayer(const RenderStyle& other) const; 1784 bool diffNeedsRepaintLayer(const RenderStyle& other) const;
1784 bool diffNeedsRepaintObject(const RenderStyle& other) const; 1785 bool diffNeedsRepaintObject(const RenderStyle& other) const;
1785 bool diffNeedsRecompositeLayer(const RenderStyle& other) const; 1786 bool diffNeedsRecompositeLayer(const RenderStyle& other) const;
1786 unsigned computeChangedContextSensitiveProperties(const RenderStyle& other, StyleDifference) const; 1787 unsigned computeChangedContextSensitiveProperties(const RenderStyle& other, StyleDifference) const;
1787 }; 1788 };
1788 1789
1789 // FIXME: Reduce/remove the dependency on zoom adjusted int values. 1790 // FIXME: Reduce/remove the dependency on zoom adjusted int values.
1790 // The float or LayoutUnit versions of layout values should be used. 1791 // The float or LayoutUnit versions of layout values should be used.
1791 inline int adjustForAbsoluteZoom(int value, float zoomFactor) 1792 inline int adjustForAbsoluteZoom(int value, float zoomFactor)
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
1876 inline bool RenderStyle::hasPseudoElementStyle() const 1877 inline bool RenderStyle::hasPseudoElementStyle() const
1877 { 1878 {
1878 return noninherited_flags._pseudoBits & PSEUDO_ELEMENT_MASK; 1879 return noninherited_flags._pseudoBits & PSEUDO_ELEMENT_MASK;
1879 } 1880 }
1880 1881
1881 float calcBorderRadiiConstraintScaleFor(const FloatRect&, const FloatRoundedRect ::Radii&); 1882 float calcBorderRadiiConstraintScaleFor(const FloatRect&, const FloatRoundedRect ::Radii&);
1882 1883
1883 } // namespace WebCore 1884 } // namespace WebCore
1884 1885
1885 #endif // RenderStyle_h 1886 #endif // RenderStyle_h
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderObject.cpp ('k') | Source/core/rendering/style/RenderStyle.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698