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

Unified Diff: Source/core/dom/Element.h

Issue 18371008: Add a WebDocument::watchCssSelectors(selectors) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@pinned
Patch Set: Sync Created 7 years, 4 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/dom/Element.h
diff --git a/Source/core/dom/Element.h b/Source/core/dom/Element.h
index 1b35d586547e802b1d3fd71aeff40bb827d7a799..e9fe35eaac662332d6870cfefb1c34c8130407e9 100644
--- a/Source/core/dom/Element.h
+++ b/Source/core/dom/Element.h
@@ -749,6 +749,12 @@ private:
virtual RenderStyle* virtualComputedStyle(PseudoId pseudoElementSpecifier = NOPSEUDO) { return computedStyle(pseudoElementSpecifier); }
+ enum AddOrRemove {
+ Add,
+ Remove,
esprehn 2013/09/04 06:08:28 SelectorAdded, SelectorRemoved and I'd suggest re
Jeffrey Yasskin 2013/09/12 22:09:59 The enum's gone now.
+ };
+ void updateCallbackSelectors(AddOrRemove);
+
// cloneNode is private so that non-virtual cloneElementWithChildren and cloneElementWithoutChildren
// are used instead.
virtual PassRefPtr<Node> cloneNode(bool deep) OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698