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

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: Fixed compilation error in mac and crash in linux/window that were reported by trybots. Created 6 years, 2 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 * Copyright (C) 2014 Opera Software ASA. All rights reserved.
7 * 8 *
8 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 10 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 11 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version. 12 * version 2 of the License, or (at your option) any later version.
12 * 13 *
13 * This library is distributed in the hope that it will be useful, 14 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of 15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Library General Public License for more details. 17 * Library General Public License for more details.
(...skipping 12 matching lines...) Expand all
29 #include "core/rendering/ClipPathOperation.h" 30 #include "core/rendering/ClipPathOperation.h"
30 #include "core/rendering/style/BasicShapes.h" 31 #include "core/rendering/style/BasicShapes.h"
31 #include "core/rendering/style/CounterDirectives.h" 32 #include "core/rendering/style/CounterDirectives.h"
32 #include "core/rendering/style/CursorData.h" 33 #include "core/rendering/style/CursorData.h"
33 #include "core/rendering/style/DataRef.h" 34 #include "core/rendering/style/DataRef.h"
34 #include "core/rendering/style/FillLayer.h" 35 #include "core/rendering/style/FillLayer.h"
35 #include "core/rendering/style/LineClampValue.h" 36 #include "core/rendering/style/LineClampValue.h"
36 #include "core/rendering/style/NinePieceImage.h" 37 #include "core/rendering/style/NinePieceImage.h"
37 #include "core/rendering/style/RenderStyleConstants.h" 38 #include "core/rendering/style/RenderStyleConstants.h"
38 #include "core/rendering/style/ShapeValue.h" 39 #include "core/rendering/style/ShapeValue.h"
40 #include "core/rendering/style/StyleNavigationData.h"
Timothy Loh 2014/10/01 13:14:54 Can we just use a forward declaration here?
39 #include "platform/LengthPoint.h" 41 #include "platform/LengthPoint.h"
40 #include "wtf/OwnPtr.h" 42 #include "wtf/OwnPtr.h"
41 #include "wtf/PassRefPtr.h" 43 #include "wtf/PassRefPtr.h"
42 #include "wtf/Vector.h" 44 #include "wtf/Vector.h"
43 45
44 namespace blink { 46 namespace blink {
45 47
46 class ContentData; 48 class ContentData;
47 class CSSAnimationData; 49 class CSSAnimationData;
48 class CSSTransitionData; 50 class CSSTransitionData;
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 RefPtr<ShadowList> m_boxShadow; 122 RefPtr<ShadowList> m_boxShadow;
121 123
122 RefPtr<StyleReflection> m_boxReflect; 124 RefPtr<StyleReflection> m_boxReflect;
123 125
124 OwnPtrWillBePersistent<CSSAnimationData> m_animations; 126 OwnPtrWillBePersistent<CSSAnimationData> m_animations;
125 OwnPtrWillBePersistent<CSSTransitionData> m_transitions; 127 OwnPtrWillBePersistent<CSSTransitionData> m_transitions;
126 128
127 FillLayer m_mask; 129 FillLayer m_mask;
128 NinePieceImage m_maskBoxImage; 130 NinePieceImage m_maskBoxImage;
129 131
132 DataRef<StyleNavigationData> m_navigation;
133
130 LengthSize m_pageSize; 134 LengthSize m_pageSize;
131 135
132 RefPtr<ShapeValue> m_shapeOutside; 136 RefPtr<ShapeValue> m_shapeOutside;
133 Length m_shapeMargin; 137 Length m_shapeMargin;
134 float m_shapeImageThreshold; 138 float m_shapeImageThreshold;
135 139
136 RefPtr<ClipPathOperation> m_clipPath; 140 RefPtr<ClipPathOperation> m_clipPath;
137 141
138 StyleColor m_textDecorationColor; 142 StyleColor m_textDecorationColor;
139 StyleColor m_visitedLinkTextDecorationColor; 143 StyleColor m_visitedLinkTextDecorationColor;
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 unsigned m_hasInlineTransform : 1; 215 unsigned m_hasInlineTransform : 1;
212 216
213 private: 217 private:
214 StyleRareNonInheritedData(); 218 StyleRareNonInheritedData();
215 StyleRareNonInheritedData(const StyleRareNonInheritedData&); 219 StyleRareNonInheritedData(const StyleRareNonInheritedData&);
216 }; 220 };
217 221
218 } // namespace blink 222 } // namespace blink
219 223
220 #endif // StyleRareNonInheritedData_h 224 #endif // StyleRareNonInheritedData_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698