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

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

Issue 703563002: Remove shape-outside. (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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 RefPtr<ShadowList> m_boxShadow; 106 RefPtr<ShadowList> m_boxShadow;
107 107
108 OwnPtr<CSSAnimationData> m_animations; 108 OwnPtr<CSSAnimationData> m_animations;
109 OwnPtr<CSSTransitionData> m_transitions; 109 OwnPtr<CSSTransitionData> m_transitions;
110 110
111 FillLayer m_mask; 111 FillLayer m_mask;
112 NinePieceImage m_maskBoxImage; 112 NinePieceImage m_maskBoxImage;
113 113
114 LengthSize m_pageSize; 114 LengthSize m_pageSize;
115 115
116 RefPtr<ShapeValue> m_shapeOutside;
117 Length m_shapeMargin;
118 float m_shapeImageThreshold;
119
120 RefPtr<ClipPathOperation> m_clipPath; 116 RefPtr<ClipPathOperation> m_clipPath;
121 117
122 StyleColor m_textDecorationColor; 118 StyleColor m_textDecorationColor;
123 119
124 int m_order; 120 int m_order;
125 121
126 LengthPoint m_objectPosition; 122 LengthPoint m_objectPosition;
127 123
128 unsigned m_pageSizeType : 2; // PageSizeType 124 unsigned m_pageSizeType : 2; // PageSizeType
129 unsigned m_transformStyle3D : 1; // ETransformStyle3D 125 unsigned m_transformStyle3D : 1; // ETransformStyle3D
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 unsigned m_hasInlineTransform : 1; 179 unsigned m_hasInlineTransform : 1;
184 180
185 private: 181 private:
186 StyleRareNonInheritedData(); 182 StyleRareNonInheritedData();
187 StyleRareNonInheritedData(const StyleRareNonInheritedData&); 183 StyleRareNonInheritedData(const StyleRareNonInheritedData&);
188 }; 184 };
189 185
190 } // namespace blink 186 } // namespace blink
191 187
192 #endif // StyleRareNonInheritedData_h 188 #endif // StyleRareNonInheritedData_h
OLDNEW
« no previous file with comments | « sky/engine/core/rendering/style/RenderStyle.cpp ('k') | sky/engine/core/rendering/style/StyleRareNonInheritedData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698