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

Side by Side Diff: third_party/WebKit/Source/core/style/ComputedStyle.h

Issue 1896893004: Hook up style invalidation for CSS Paint API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@css-paint-register
Patch Set: fix component build. Created 4 years, 8 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
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 1910 matching lines...) Expand 10 before | Expand all | Expand 10 after
1921 Color floodColor() const { return svgStyle().floodColor(); } 1921 Color floodColor() const { return svgStyle().floodColor(); }
1922 Color lightingColor() const { return svgStyle().lightingColor(); } 1922 Color lightingColor() const { return svgStyle().lightingColor(); }
1923 1923
1924 void addAppliedTextDecoration(const AppliedTextDecoration&); 1924 void addAppliedTextDecoration(const AppliedTextDecoration&);
1925 void applyMotionPathTransform(float originX, float originY, TransformationMa trix&) const; 1925 void applyMotionPathTransform(float originX, float originY, TransformationMa trix&) const;
1926 1926
1927 bool diffNeedsFullLayoutAndPaintInvalidation(const ComputedStyle& other) con st; 1927 bool diffNeedsFullLayoutAndPaintInvalidation(const ComputedStyle& other) con st;
1928 bool diffNeedsFullLayout(const ComputedStyle& other) const; 1928 bool diffNeedsFullLayout(const ComputedStyle& other) const;
1929 bool diffNeedsPaintInvalidationLayer(const ComputedStyle& other) const; 1929 bool diffNeedsPaintInvalidationLayer(const ComputedStyle& other) const;
1930 bool diffNeedsPaintInvalidationObject(const ComputedStyle& other) const; 1930 bool diffNeedsPaintInvalidationObject(const ComputedStyle& other) const;
1931 bool diffNeedsPaintInvalidationObjectForPaintImage(const StyleImage*, const ComputedStyle& other) const;
1931 void updatePropertySpecificDifferences(const ComputedStyle& other, StyleDiff erence&) const; 1932 void updatePropertySpecificDifferences(const ComputedStyle& other, StyleDiff erence&) const;
1932 1933
1933 bool requireTransformOrigin(ApplyTransformOrigin applyOrigin, ApplyMotionPat h) const; 1934 bool requireTransformOrigin(ApplyTransformOrigin applyOrigin, ApplyMotionPat h) const;
1934 static bool shadowListHasCurrentColor(const ShadowList*); 1935 static bool shadowListHasCurrentColor(const ShadowList*);
1935 }; 1936 };
1936 1937
1937 // FIXME: Reduce/remove the dependency on zoom adjusted int values. 1938 // FIXME: Reduce/remove the dependency on zoom adjusted int values.
1938 // The float or LayoutUnit versions of layout values should be used. 1939 // The float or LayoutUnit versions of layout values should be used.
1939 inline int adjustForAbsoluteZoom(int value, float zoomFactor) 1940 inline int adjustForAbsoluteZoom(int value, float zoomFactor)
1940 { 1941 {
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
2040 } 2041 }
2041 2042
2042 inline bool ComputedStyle::hasPseudoElementStyle() const 2043 inline bool ComputedStyle::hasPseudoElementStyle() const
2043 { 2044 {
2044 return noninherited_flags.pseudoBits & ElementPseudoIdMask; 2045 return noninherited_flags.pseudoBits & ElementPseudoIdMask;
2045 } 2046 }
2046 2047
2047 } // namespace blink 2048 } // namespace blink
2048 2049
2049 #endif // ComputedStyle_h 2050 #endif // ComputedStyle_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698