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

Unified Diff: third_party/WebKit/Source/core/css/resolver/StyleResolver.h

Issue 803133002: Use invalidation sets for fullscreen pseudos. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Load fullscreen.css on demand Created 4 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: third_party/WebKit/Source/core/css/resolver/StyleResolver.h
diff --git a/third_party/WebKit/Source/core/css/resolver/StyleResolver.h b/third_party/WebKit/Source/core/css/resolver/StyleResolver.h
index 99766103ea417ae6204fe5895b5ed43962039ffc..02f0bf872c85d80eca57f148613553ae7405f27d 100644
--- a/third_party/WebKit/Source/core/css/resolver/StyleResolver.h
+++ b/third_party/WebKit/Source/core/css/resolver/StyleResolver.h
@@ -163,6 +163,7 @@ public:
StyleSharingList& styleSharingList();
bool hasRulesForId(const AtomicString&) const;
+ bool hasFullscreenUAStyle() const { return m_hasFullscreenUAStyle; }
void addToStyleSharingList(Element&);
void clearStyleSharingList();
@@ -247,6 +248,7 @@ private:
bool m_needCollectFeatures;
bool m_printMediaType;
+ bool m_hasFullscreenUAStyle = false;
unsigned m_styleSharingDepth;
WillBeHeapVector<OwnPtrWillBeMember<StyleSharingList>, styleSharingMaxDepth> m_styleSharingLists;
« no previous file with comments | « third_party/WebKit/Source/core/css/RuleFeature.cpp ('k') | third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698