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

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

Issue 209443007: Remove shape-inside support (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove now unused segmentIsEmpty Created 6 years, 9 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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 RefPtr<StyleReflection> m_boxReflect; 122 RefPtr<StyleReflection> m_boxReflect;
123 123
124 OwnPtrWillBePersistent<CSSAnimationDataList> m_animations; 124 OwnPtrWillBePersistent<CSSAnimationDataList> m_animations;
125 OwnPtrWillBePersistent<CSSAnimationDataList> m_transitions; 125 OwnPtrWillBePersistent<CSSAnimationDataList> m_transitions;
126 126
127 FillLayer m_mask; 127 FillLayer m_mask;
128 NinePieceImage m_maskBoxImage; 128 NinePieceImage m_maskBoxImage;
129 129
130 LengthSize m_pageSize; 130 LengthSize m_pageSize;
131 131
132 RefPtr<ShapeValue> m_shapeInside;
133 RefPtr<ShapeValue> m_shapeOutside; 132 RefPtr<ShapeValue> m_shapeOutside;
134 Length m_shapeMargin; 133 Length m_shapeMargin;
135 Length m_shapePadding; 134 Length m_shapePadding;
136 float m_shapeImageThreshold; 135 float m_shapeImageThreshold;
137 136
138 RefPtr<ClipPathOperation> m_clipPath; 137 RefPtr<ClipPathOperation> m_clipPath;
139 138
140 StyleColor m_textDecorationColor; 139 StyleColor m_textDecorationColor;
141 StyleColor m_visitedLinkTextDecorationColor; 140 StyleColor m_visitedLinkTextDecorationColor;
142 StyleColor m_visitedLinkBackgroundColor; 141 StyleColor m_visitedLinkBackgroundColor;
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 unsigned m_scrollBehavior: 2; 194 unsigned m_scrollBehavior: 2;
196 195
197 private: 196 private:
198 StyleRareNonInheritedData(); 197 StyleRareNonInheritedData();
199 StyleRareNonInheritedData(const StyleRareNonInheritedData&); 198 StyleRareNonInheritedData(const StyleRareNonInheritedData&);
200 }; 199 };
201 200
202 } // namespace WebCore 201 } // namespace WebCore
203 202
204 #endif // StyleRareNonInheritedData_h 203 #endif // StyleRareNonInheritedData_h
OLDNEW
« no previous file with comments | « Source/core/rendering/style/RenderStyle.cpp ('k') | Source/core/rendering/style/StyleRareNonInheritedData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698