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

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

Issue 2869043002: Store border-*-color on SurroundData in ComputedStyle not BorderColorAndStyle (Closed)
Patch Set: Always return VisitedDependantColor(CSSPropertyID) Created 3 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google, Inc. 2 * Copyright (C) 2013 Google, Inc.
3 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 3 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
4 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. 4 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc.
5 * All rights reserved. 5 * All rights reserved.
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
11 * 11 *
12 * This library is distributed in the hope that it will be useful, 12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Library General Public License for more details. 15 * Library General Public License for more details.
16 * 16 *
17 * You should have received a copy of the GNU Library General Public License 17 * You should have received a copy of the GNU Library General Public License
18 * along with this library; see the file COPYING.LIB. If not, write to 18 * along with this library; see the file COPYING.LIB. If not, write to
19 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 19 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 * Boston, MA 02110-1301, USA. 20 * Boston, MA 02110-1301, USA.
21 */ 21 */
22 22
23 #ifndef CachedUAStyle_h 23 #ifndef CachedUAStyle_h
24 #define CachedUAStyle_h 24 #define CachedUAStyle_h
25 25
26 #include <memory> 26 #include <memory>
27 #include "core/style/ComputedStyle.h" 27 #include "core/style/ComputedStyle.h"
28 #include "platform/graphics/Color.h"
28 #include "platform/wtf/Allocator.h" 29 #include "platform/wtf/Allocator.h"
29 #include "platform/wtf/Noncopyable.h" 30 #include "platform/wtf/Noncopyable.h"
30 #include "platform/wtf/PtrUtil.h" 31 #include "platform/wtf/PtrUtil.h"
31 32
32 namespace blink { 33 namespace blink {
33 34
34 // LayoutTheme::AdjustStyle wants the background and borders 35 // LayoutTheme::AdjustStyle wants the background and borders
35 // as specified by the UA sheets, excluding any author rules. 36 // as specified by the UA sheets, excluding any author rules.
36 // We use this class to cache those values during 37 // We use this class to cache those values during
37 // ApplyMatchedProperties for later use during AdjustComputedStyle. 38 // ApplyMatchedProperties for later use during AdjustComputedStyle.
38 class CachedUAStyle { 39 class CachedUAStyle {
39 USING_FAST_MALLOC(CachedUAStyle); 40 USING_FAST_MALLOC(CachedUAStyle);
40 WTF_MAKE_NONCOPYABLE(CachedUAStyle); 41 WTF_MAKE_NONCOPYABLE(CachedUAStyle);
41 42
42 public: 43 public:
43 static std::unique_ptr<CachedUAStyle> Create(const ComputedStyle* style) { 44 static std::unique_ptr<CachedUAStyle> Create(const ComputedStyle* style) {
44 return WTF::WrapUnique(new CachedUAStyle(style)); 45 return WTF::WrapUnique(new CachedUAStyle(style));
45 } 46 }
46 47
47 BorderData border; 48 BorderData border;
48 LengthSize top_left_; 49 LengthSize top_left_;
49 LengthSize top_right_; 50 LengthSize top_right_;
50 LengthSize bottom_left_; 51 LengthSize bottom_left_;
51 LengthSize bottom_right_; 52 LengthSize bottom_right_;
53 Color border_left_color;
shend 2017/05/09 07:24:41 Probably won't make a difference, but we can rearr
nainar 2017/05/09 07:40:39 Will do this in a separate patch
54 Color border_right_color;
55 Color border_top_color;
56 Color border_bottom_color;
57 unsigned border_left_color_is_current_color : 1;
58 unsigned border_right_color_is_current_color : 1;
59 unsigned border_top_color_is_current_color : 1;
60 unsigned border_bottom_color_is_current_color : 1;
52 float border_left_width; 61 float border_left_width;
53 float border_right_width; 62 float border_right_width;
54 float border_top_width; 63 float border_top_width;
55 float border_bottom_width; 64 float border_bottom_width;
56 FillLayer background_layers; 65 FillLayer background_layers;
57 StyleColor background_color; 66 StyleColor background_color;
58 67
59 private: 68 private:
60 explicit CachedUAStyle(const ComputedStyle* style) 69 explicit CachedUAStyle(const ComputedStyle* style)
61 : border(style->Border()), 70 : border(style->Border()),
62 top_left_(style->BorderTopLeftRadius()), 71 top_left_(style->BorderTopLeftRadius()),
63 top_right_(style->BorderTopRightRadius()), 72 top_right_(style->BorderTopRightRadius()),
64 bottom_left_(style->BorderBottomLeftRadius()), 73 bottom_left_(style->BorderBottomLeftRadius()),
65 bottom_right_(style->BorderBottomRightRadius()), 74 bottom_right_(style->BorderBottomRightRadius()),
75 border_left_color(
76 style->VisitedDependentColor(CSSPropertyBorderLeftColor)),
77 border_right_color(
78 style->VisitedDependentColor(CSSPropertyBorderRightColor)),
79 border_top_color(
80 style->VisitedDependentColor(CSSPropertyBorderTopColor)),
81 border_bottom_color(
82 style->VisitedDependentColor(CSSPropertyBorderBottomColor)),
83 border_left_color_is_current_color(
84 style->BorderLeftColorIsCurrentColor()),
85 border_right_color_is_current_color(
86 style->BorderRightColorIsCurrentColor()),
87 border_top_color_is_current_color(
88 style->BorderTopColorIsCurrentColor()),
89 border_bottom_color_is_current_color(
90 style->BorderBottomColorIsCurrentColor()),
66 border_left_width(style->BorderLeftWidth()), 91 border_left_width(style->BorderLeftWidth()),
67 border_right_width(style->BorderRightWidth()), 92 border_right_width(style->BorderRightWidth()),
68 border_top_width(style->BorderTopWidth()), 93 border_top_width(style->BorderTopWidth()),
69 border_bottom_width(style->BorderBottomWidth()), 94 border_bottom_width(style->BorderBottomWidth()),
70 background_layers(style->BackgroundLayers()), 95 background_layers(style->BackgroundLayers()),
71 background_color(style->BackgroundColor()) {} 96 background_color(style->BackgroundColor()) {}
72 }; 97 };
73 98
74 } // namespace blink 99 } // namespace blink
75 100
76 #endif // CachedUAStyle_h 101 #endif // CachedUAStyle_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698