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

Side by Side Diff: sky/engine/core/rendering/style/StyleRareNonInheritedData.h

Issue 667003003: Remove most of visited link support. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 118
119 LengthSize m_pageSize; 119 LengthSize m_pageSize;
120 120
121 RefPtr<ShapeValue> m_shapeOutside; 121 RefPtr<ShapeValue> m_shapeOutside;
122 Length m_shapeMargin; 122 Length m_shapeMargin;
123 float m_shapeImageThreshold; 123 float m_shapeImageThreshold;
124 124
125 RefPtr<ClipPathOperation> m_clipPath; 125 RefPtr<ClipPathOperation> m_clipPath;
126 126
127 StyleColor m_textDecorationColor; 127 StyleColor m_textDecorationColor;
128 StyleColor m_visitedLinkTextDecorationColor;
129 StyleColor m_visitedLinkBackgroundColor;
130 StyleColor m_visitedLinkOutlineColor;
131 StyleColor m_visitedLinkBorderLeftColor;
132 StyleColor m_visitedLinkBorderRightColor;
133 StyleColor m_visitedLinkBorderTopColor;
134 StyleColor m_visitedLinkBorderBottomColor;
135 128
136 int m_order; 129 int m_order;
137 130
138 LengthPoint m_objectPosition; 131 LengthPoint m_objectPosition;
139 132
140 unsigned m_pageSizeType : 2; // PageSizeType 133 unsigned m_pageSizeType : 2; // PageSizeType
141 unsigned m_transformStyle3D : 1; // ETransformStyle3D 134 unsigned m_transformStyle3D : 1; // ETransformStyle3D
142 unsigned m_backfaceVisibility : 1; // EBackfaceVisibility 135 unsigned m_backfaceVisibility : 1; // EBackfaceVisibility
143 136
144 unsigned m_alignContent : 3; // EAlignContent 137 unsigned m_alignContent : 3; // EAlignContent
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 unsigned m_hasInlineTransform : 1; 190 unsigned m_hasInlineTransform : 1;
198 191
199 private: 192 private:
200 StyleRareNonInheritedData(); 193 StyleRareNonInheritedData();
201 StyleRareNonInheritedData(const StyleRareNonInheritedData&); 194 StyleRareNonInheritedData(const StyleRareNonInheritedData&);
202 }; 195 };
203 196
204 } // namespace blink 197 } // namespace blink
205 198
206 #endif // StyleRareNonInheritedData_h 199 #endif // StyleRareNonInheritedData_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698