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

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

Issue 761283002: Remove webkit-line-clamp (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 6 years 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 14 matching lines...) Expand all
25 #ifndef SKY_ENGINE_CORE_RENDERING_STYLE_STYLERARENONINHERITEDDATA_H_ 25 #ifndef SKY_ENGINE_CORE_RENDERING_STYLE_STYLERARENONINHERITEDDATA_H_
26 #define SKY_ENGINE_CORE_RENDERING_STYLE_STYLERARENONINHERITEDDATA_H_ 26 #define SKY_ENGINE_CORE_RENDERING_STYLE_STYLERARENONINHERITEDDATA_H_
27 27
28 #include "sky/engine/core/css/StyleColor.h" 28 #include "sky/engine/core/css/StyleColor.h"
29 #include "sky/engine/core/rendering/ClipPathOperation.h" 29 #include "sky/engine/core/rendering/ClipPathOperation.h"
30 #include "sky/engine/core/rendering/style/BasicShapes.h" 30 #include "sky/engine/core/rendering/style/BasicShapes.h"
31 #include "sky/engine/core/rendering/style/CounterDirectives.h" 31 #include "sky/engine/core/rendering/style/CounterDirectives.h"
32 #include "sky/engine/core/rendering/style/CursorData.h" 32 #include "sky/engine/core/rendering/style/CursorData.h"
33 #include "sky/engine/core/rendering/style/DataRef.h" 33 #include "sky/engine/core/rendering/style/DataRef.h"
34 #include "sky/engine/core/rendering/style/FillLayer.h" 34 #include "sky/engine/core/rendering/style/FillLayer.h"
35 #include "sky/engine/core/rendering/style/LineClampValue.h"
36 #include "sky/engine/core/rendering/style/NinePieceImage.h" 35 #include "sky/engine/core/rendering/style/NinePieceImage.h"
37 #include "sky/engine/core/rendering/style/RenderStyleConstants.h" 36 #include "sky/engine/core/rendering/style/RenderStyleConstants.h"
38 #include "sky/engine/core/rendering/style/ShapeValue.h" 37 #include "sky/engine/core/rendering/style/ShapeValue.h"
39 #include "sky/engine/platform/LengthPoint.h" 38 #include "sky/engine/platform/LengthPoint.h"
40 #include "sky/engine/wtf/OwnPtr.h" 39 #include "sky/engine/wtf/OwnPtr.h"
41 #include "sky/engine/wtf/PassRefPtr.h" 40 #include "sky/engine/wtf/PassRefPtr.h"
42 #include "sky/engine/wtf/Vector.h" 41 #include "sky/engine/wtf/Vector.h"
43 42
44 namespace blink { 43 namespace blink {
45 44
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 82
84 float opacity; // Whether or not we're transparent. 83 float opacity; // Whether or not we're transparent.
85 84
86 float m_aspectRatioDenominator; 85 float m_aspectRatioDenominator;
87 float m_aspectRatioNumerator; 86 float m_aspectRatioNumerator;
88 87
89 float m_perspective; 88 float m_perspective;
90 Length m_perspectiveOriginX; 89 Length m_perspectiveOriginX;
91 Length m_perspectiveOriginY; 90 Length m_perspectiveOriginY;
92 91
93 LineClampValue lineClamp; // An Apple extension.
94
95 DataRef<StyleFlexibleBoxData> m_flexibleBox; 92 DataRef<StyleFlexibleBoxData> m_flexibleBox;
96 DataRef<StyleTransformData> m_transform; // Transform properties (rotate, sc ale, skew, etc.) 93 DataRef<StyleTransformData> m_transform; // Transform properties (rotate, sc ale, skew, etc.)
97 DataRef<StyleWillChangeData> m_willChange; // CSS Will Change 94 DataRef<StyleWillChangeData> m_willChange; // CSS Will Change
98 95
99 DataRef<StyleFilterData> m_filter; // Filter operations (url, sepia, blur, e tc.) 96 DataRef<StyleFilterData> m_filter; // Filter operations (url, sepia, blur, e tc.)
100 97
101 OwnPtr<CounterDirectiveMap> m_counterDirectives; 98 OwnPtr<CounterDirectiveMap> m_counterDirectives;
102 99
103 RefPtr<ShadowList> m_boxShadow; 100 RefPtr<ShadowList> m_boxShadow;
104 101
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 unsigned m_hasInlineTransform : 1; 171 unsigned m_hasInlineTransform : 1;
175 172
176 private: 173 private:
177 StyleRareNonInheritedData(); 174 StyleRareNonInheritedData();
178 StyleRareNonInheritedData(const StyleRareNonInheritedData&); 175 StyleRareNonInheritedData(const StyleRareNonInheritedData&);
179 }; 176 };
180 177
181 } // namespace blink 178 } // namespace blink
182 179
183 #endif // SKY_ENGINE_CORE_RENDERING_STYLE_STYLERARENONINHERITEDDATA_H_ 180 #endif // SKY_ENGINE_CORE_RENDERING_STYLE_STYLERARENONINHERITEDDATA_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698