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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: Source/core/rendering/style/StyleRareNonInheritedData.h
diff --git a/Source/core/rendering/style/StyleRareNonInheritedData.h b/Source/core/rendering/style/StyleRareNonInheritedData.h
index bf42f5443f6345ae70e3af502eb2f7d4576447e2..272aa161a8f7c4a79d35614b1dc59e463867dad3 100644
--- a/Source/core/rendering/style/StyleRareNonInheritedData.h
+++ b/Source/core/rendering/style/StyleRareNonInheritedData.h
@@ -37,10 +37,12 @@
#include "wtf/OwnPtr.h"
#include "wtf/PassRefPtr.h"
#include "wtf/Vector.h"
+#include "wtf/WeakPtr.h"
namespace WebCore {
class CSSAnimationDataList;
+class Document;
class ShadowData;
class StyleDeprecatedFlexibleBoxData;
class StyleFilterData;
@@ -143,6 +145,11 @@ public:
int m_order;
+#if ENABLE(CSS_CALLBACKS)
+ Vector<String> m_callbackSelectors;
+ WeakPtr<Document> m_document;
esprehn 2013/07/13 01:43:01 This doesn't look right, why do you have a documen
+#endif
+
AtomicString m_flowThread;
AtomicString m_regionThread;
unsigned m_regionFragment : 1; // RegionFragment

Powered by Google App Engine
This is Rietveld 408576698