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

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

Issue 219633002: Proper support for multiple text decorations. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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 Apple Inc. All rights reserved. 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008 Apple Inc. All rights 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 17 matching lines...) Expand all
28 #include "core/css/StyleColor.h" 28 #include "core/css/StyleColor.h"
29 #include "core/rendering/style/DataRef.h" 29 #include "core/rendering/style/DataRef.h"
30 #include "platform/Length.h" 30 #include "platform/Length.h"
31 #include "platform/graphics/Color.h" 31 #include "platform/graphics/Color.h"
32 #include "wtf/PassRefPtr.h" 32 #include "wtf/PassRefPtr.h"
33 #include "wtf/RefCounted.h" 33 #include "wtf/RefCounted.h"
34 #include "wtf/text/AtomicString.h" 34 #include "wtf/text/AtomicString.h"
35 35
36 namespace WebCore { 36 namespace WebCore {
37 37
38 class AppliedTextDecorationList;
38 class CursorList; 39 class CursorList;
39 class QuotesData; 40 class QuotesData;
40 class ShadowList; 41 class ShadowList;
41 class StyleImage; 42 class StyleImage;
42 43
43 // This struct is for rarely used inherited CSS3, CSS2, and WebKit-specific prop erties. 44 // This struct is for rarely used inherited CSS3, CSS2, and WebKit-specific prop erties.
44 // By grouping them together, we save space, and only allocate this object when someone 45 // By grouping them together, we save space, and only allocate this object when someone
45 // actually uses one of these properties. 46 // actually uses one of these properties.
46 class StyleRareInheritedData : public RefCounted<StyleRareInheritedData> { 47 class StyleRareInheritedData : public RefCounted<StyleRareInheritedData> {
47 public: 48 public:
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 132
132 AtomicString locale; 133 AtomicString locale;
133 134
134 AtomicString textEmphasisCustomMark; 135 AtomicString textEmphasisCustomMark;
135 RefPtr<QuotesData> quotes; 136 RefPtr<QuotesData> quotes;
136 137
137 unsigned m_tabSize; 138 unsigned m_tabSize;
138 139
139 Color tapHighlightColor; 140 Color tapHighlightColor;
140 141
142 RefPtr<AppliedTextDecorationList> appliedTextDecorations;
143
141 private: 144 private:
142 StyleRareInheritedData(); 145 StyleRareInheritedData();
143 StyleRareInheritedData(const StyleRareInheritedData&); 146 StyleRareInheritedData(const StyleRareInheritedData&);
144 }; 147 };
145 148
146 } // namespace WebCore 149 } // namespace WebCore
147 150
148 #endif // StyleRareInheritedData_h 151 #endif // StyleRareInheritedData_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698