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

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

Issue 17450016: Implementation of CSS3 nav-up/down/left/right properties from CSS3 UI. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Implementation of CSS3 nav-up/down/left/right properties from CSS3 UI Created 7 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 16 matching lines...) Expand all
27 27
28 #include "core/rendering/ClipPathOperation.h" 28 #include "core/rendering/ClipPathOperation.h"
29 #include "core/rendering/style/BasicShapes.h" 29 #include "core/rendering/style/BasicShapes.h"
30 #include "core/rendering/style/CounterDirectives.h" 30 #include "core/rendering/style/CounterDirectives.h"
31 #include "core/rendering/style/CursorData.h" 31 #include "core/rendering/style/CursorData.h"
32 #include "core/rendering/style/DataRef.h" 32 #include "core/rendering/style/DataRef.h"
33 #include "core/rendering/style/ExclusionShapeValue.h" 33 #include "core/rendering/style/ExclusionShapeValue.h"
34 #include "core/rendering/style/FillLayer.h" 34 #include "core/rendering/style/FillLayer.h"
35 #include "core/rendering/style/LineClampValue.h" 35 #include "core/rendering/style/LineClampValue.h"
36 #include "core/rendering/style/NinePieceImage.h" 36 #include "core/rendering/style/NinePieceImage.h"
37 #include "core/rendering/style/StyleNavigationData.h"
37 #include <wtf/OwnPtr.h> 38 #include <wtf/OwnPtr.h>
38 #include <wtf/PassRefPtr.h> 39 #include <wtf/PassRefPtr.h>
39 #include <wtf/Vector.h> 40 #include <wtf/Vector.h>
40 41
41 namespace WebCore { 42 namespace WebCore {
42 43
43 class CSSAnimationDataList; 44 class CSSAnimationDataList;
44 class ShadowData; 45 class ShadowData;
45 class StyleDeprecatedFlexibleBoxData; 46 class StyleDeprecatedFlexibleBoxData;
46 class StyleFilterData; 47 class StyleFilterData;
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 OwnPtr<ShadowData> m_boxShadow; // For box-shadow decorations. 117 OwnPtr<ShadowData> m_boxShadow; // For box-shadow decorations.
117 118
118 RefPtr<StyleReflection> m_boxReflect; 119 RefPtr<StyleReflection> m_boxReflect;
119 120
120 OwnPtr<CSSAnimationDataList> m_animations; 121 OwnPtr<CSSAnimationDataList> m_animations;
121 OwnPtr<CSSAnimationDataList> m_transitions; 122 OwnPtr<CSSAnimationDataList> m_transitions;
122 123
123 FillLayer m_mask; 124 FillLayer m_mask;
124 NinePieceImage m_maskBoxImage; 125 NinePieceImage m_maskBoxImage;
125 126
127 StyleNavigationData m_nav;
esprehn 2013/06/20 19:45:10 m_navigation ?
Krzysztof Olczyk 2013/07/22 14:14:16 Done.
128
126 LengthSize m_pageSize; 129 LengthSize m_pageSize;
127 130
128 RefPtr<ExclusionShapeValue> m_shapeInside; 131 RefPtr<ExclusionShapeValue> m_shapeInside;
129 RefPtr<ExclusionShapeValue> m_shapeOutside; 132 RefPtr<ExclusionShapeValue> m_shapeOutside;
130 Length m_shapeMargin; 133 Length m_shapeMargin;
131 Length m_shapePadding; 134 Length m_shapePadding;
132 135
133 RefPtr<ClipPathOperation> m_clipPath; 136 RefPtr<ClipPathOperation> m_clipPath;
134 137
135 Color m_textDecorationColor; 138 Color m_textDecorationColor;
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 unsigned m_touchAction : 1; // TouchAction 184 unsigned m_touchAction : 1; // TouchAction
182 185
183 private: 186 private:
184 StyleRareNonInheritedData(); 187 StyleRareNonInheritedData();
185 StyleRareNonInheritedData(const StyleRareNonInheritedData&); 188 StyleRareNonInheritedData(const StyleRareNonInheritedData&);
186 }; 189 };
187 190
188 } // namespace WebCore 191 } // namespace WebCore
189 192
190 #endif // StyleRareNonInheritedData_h 193 #endif // StyleRareNonInheritedData_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698