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

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

Issue 1023393002: Cache element indices for :nth-child and :nth-last-child selectors. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: More review issues Created 5 years, 9 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/Document.h
diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h
index 51a3c60befaffd8c8722eedee272a4a7ce04c092..e0e2ed1474edf80d27f6c43a66112a40d882ec54 100644
--- a/Source/core/dom/Document.h
+++ b/Source/core/dom/Document.h
@@ -128,6 +128,7 @@ class MediaQueryListListener;
class MediaQueryMatcher;
class NodeFilter;
class NodeIterator;
+class NthIndexCache;
class Page;
class PlatformMouseEvent;
class ProcessingInstruction;
@@ -247,6 +248,7 @@ public:
virtual bool canContainRangeEndPoint() const override { return true; }
SelectorQueryCache& selectorQueryCache();
+ NthIndexCache* nthIndexCache();
// Focus Management.
Element* activeElement() const;
@@ -1080,6 +1082,7 @@ protected:
private:
friend class IgnoreDestructiveWriteCountIncrementer;
+ friend class NthIndexCacheScope;
bool isDocumentFragment() const = delete; // This will catch anyone doing an unnecessary check.
bool isDocumentNode() const = delete; // This will catch anyone doing an unnecessary check.
@@ -1172,6 +1175,9 @@ private:
void updateElementOpacity(const AtomicString& cssSelector, double opacity);
+ bool useNthIndexCache() const { return m_useNthIndexCache; }
+ void setUseNthIndexCache(bool);
esprehn 2015/03/30 22:55:31 This is the same as null checking the OwnPtr. You
+
DocumentLifecycle m_lifecycle;
bool m_hasNodesWithPlaceholderStyle;
@@ -1317,6 +1323,7 @@ private:
WillBeHeapHashMap<String, RefPtrWillBeMember<HTMLCanvasElement>> m_cssCanvasElements;
OwnPtr<SelectorQueryCache> m_selectorQueryCache;
+ OwnPtrWillBeMember<NthIndexCache> m_nthIndexCache;
bool m_useSecureKeyboardEntryWhenActive;
@@ -1397,6 +1404,8 @@ private:
ParserSynchronizationPolicy m_parserSyncPolicy;
OriginsUsingFeatures::Value m_originsUsingFeaturesValue;
+
+ bool m_useNthIndexCache;
};
inline bool Document::shouldOverrideLegacyDescription(ViewportDescription::Type origin)

Powered by Google App Engine
This is Rietveld 408576698