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

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

Issue 1161623004: Remove backface visibility (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 6 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 93
94 RefPtr<ClipPathOperation> m_clipPath; 94 RefPtr<ClipPathOperation> m_clipPath;
95 95
96 StyleColor m_textDecorationColor; 96 StyleColor m_textDecorationColor;
97 97
98 int m_order; 98 int m_order;
99 99
100 LengthPoint m_objectPosition; 100 LengthPoint m_objectPosition;
101 101
102 unsigned m_transformStyle3D : 1; // ETransformStyle3D 102 unsigned m_transformStyle3D : 1; // ETransformStyle3D
103 unsigned m_backfaceVisibility : 1; // EBackfaceVisibility
104 103
105 unsigned m_alignContent : 3; // EAlignContent 104 unsigned m_alignContent : 3; // EAlignContent
106 unsigned m_alignItems : 4; // ItemPosition 105 unsigned m_alignItems : 4; // ItemPosition
107 unsigned m_alignItemsOverflowAlignment : 2; // OverflowAlignment 106 unsigned m_alignItemsOverflowAlignment : 2; // OverflowAlignment
108 unsigned m_alignSelf : 4; // ItemPosition 107 unsigned m_alignSelf : 4; // ItemPosition
109 unsigned m_alignSelfOverflowAlignment : 2; // OverflowAlignment 108 unsigned m_alignSelfOverflowAlignment : 2; // OverflowAlignment
110 unsigned m_justifyContent : 3; // EJustifyContent 109 unsigned m_justifyContent : 3; // EJustifyContent
111 110
112 unsigned textOverflow : 1; // Whether or not lines that spill out should be truncated with "..." 111 unsigned textOverflow : 1; // Whether or not lines that spill out should be truncated with "..."
113 112
(...skipping 17 matching lines...) Expand all
131 unsigned m_justifySelfOverflowAlignment : 2; // OverflowAlignment 130 unsigned m_justifySelfOverflowAlignment : 2; // OverflowAlignment
132 131
133 private: 132 private:
134 StyleRareNonInheritedData(); 133 StyleRareNonInheritedData();
135 StyleRareNonInheritedData(const StyleRareNonInheritedData&); 134 StyleRareNonInheritedData(const StyleRareNonInheritedData&);
136 }; 135 };
137 136
138 } // namespace blink 137 } // namespace blink
139 138
140 #endif // SKY_ENGINE_CORE_RENDERING_STYLE_STYLERARENONINHERITEDDATA_H_ 139 #endif // SKY_ENGINE_CORE_RENDERING_STYLE_STYLERARENONINHERITEDDATA_H_
OLDNEW
« no previous file with comments | « sky/engine/core/rendering/style/RenderStyleConstants.h ('k') | sky/engine/core/rendering/style/StyleRareNonInheritedData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698