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

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

Issue 18371008: Add a WebDocument::watchCssSelectors(selectors) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@pinned
Patch Set: Omit split CLs Created 7 years, 5 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 19 matching lines...) Expand all
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/FillLayer.h" 33 #include "core/rendering/style/FillLayer.h"
34 #include "core/rendering/style/LineClampValue.h" 34 #include "core/rendering/style/LineClampValue.h"
35 #include "core/rendering/style/NinePieceImage.h" 35 #include "core/rendering/style/NinePieceImage.h"
36 #include "core/rendering/style/ShapeValue.h" 36 #include "core/rendering/style/ShapeValue.h"
37 #include "wtf/OwnPtr.h" 37 #include "wtf/OwnPtr.h"
38 #include "wtf/PassRefPtr.h" 38 #include "wtf/PassRefPtr.h"
39 #include "wtf/Vector.h" 39 #include "wtf/Vector.h"
40 #include "wtf/WeakPtr.h"
40 41
41 namespace WebCore { 42 namespace WebCore {
42 43
43 class CSSAnimationDataList; 44 class CSSAnimationDataList;
45 class Document;
44 class ShadowData; 46 class ShadowData;
45 class StyleDeprecatedFlexibleBoxData; 47 class StyleDeprecatedFlexibleBoxData;
46 class StyleFilterData; 48 class StyleFilterData;
47 class StyleFlexibleBoxData; 49 class StyleFlexibleBoxData;
48 class StyleGridData; 50 class StyleGridData;
49 class StyleGridItemData; 51 class StyleGridItemData;
50 class StyleMarqueeData; 52 class StyleMarqueeData;
51 class StyleMultiColData; 53 class StyleMultiColData;
52 class StyleReflection; 54 class StyleReflection;
53 class StyleResolver; 55 class StyleResolver;
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 Color m_visitedLinkTextDecorationColor; 138 Color m_visitedLinkTextDecorationColor;
137 Color m_visitedLinkBackgroundColor; 139 Color m_visitedLinkBackgroundColor;
138 Color m_visitedLinkOutlineColor; 140 Color m_visitedLinkOutlineColor;
139 Color m_visitedLinkBorderLeftColor; 141 Color m_visitedLinkBorderLeftColor;
140 Color m_visitedLinkBorderRightColor; 142 Color m_visitedLinkBorderRightColor;
141 Color m_visitedLinkBorderTopColor; 143 Color m_visitedLinkBorderTopColor;
142 Color m_visitedLinkBorderBottomColor; 144 Color m_visitedLinkBorderBottomColor;
143 145
144 int m_order; 146 int m_order;
145 147
148 #if ENABLE(CSS_CALLBACKS)
149 Vector<String> m_callbackSelectors;
150 WeakPtr<Document> m_document;
esprehn 2013/07/13 01:43:01 This doesn't look right, why do you have a documen
151 #endif
152
146 AtomicString m_flowThread; 153 AtomicString m_flowThread;
147 AtomicString m_regionThread; 154 AtomicString m_regionThread;
148 unsigned m_regionFragment : 1; // RegionFragment 155 unsigned m_regionFragment : 1; // RegionFragment
149 156
150 unsigned m_regionBreakAfter : 2; // EPageBreak 157 unsigned m_regionBreakAfter : 2; // EPageBreak
151 unsigned m_regionBreakBefore : 2; // EPageBreak 158 unsigned m_regionBreakBefore : 2; // EPageBreak
152 unsigned m_regionBreakInside : 2; // EPageBreak 159 unsigned m_regionBreakInside : 2; // EPageBreak
153 160
154 unsigned m_pageSizeType : 2; // PageSizeType 161 unsigned m_pageSizeType : 2; // PageSizeType
155 unsigned m_transformStyle3D : 1; // ETransformStyle3D 162 unsigned m_transformStyle3D : 1; // ETransformStyle3D
(...skipping 25 matching lines...) Expand all
181 unsigned m_touchAction : 1; // TouchAction 188 unsigned m_touchAction : 1; // TouchAction
182 189
183 private: 190 private:
184 StyleRareNonInheritedData(); 191 StyleRareNonInheritedData();
185 StyleRareNonInheritedData(const StyleRareNonInheritedData&); 192 StyleRareNonInheritedData(const StyleRareNonInheritedData&);
186 }; 193 };
187 194
188 } // namespace WebCore 195 } // namespace WebCore
189 196
190 #endif // StyleRareNonInheritedData_h 197 #endif // StyleRareNonInheritedData_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698