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

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

Issue 861553003: Invalidate CustomScrollbars on having window-inactive selector. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: addressed review comments Created 5 years, 11 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
« no previous file with comments | « Source/core/css/RuleFeature.cpp ('k') | Source/core/dom/StyleEngine.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/StyleEngine.h
diff --git a/Source/core/dom/StyleEngine.h b/Source/core/dom/StyleEngine.h
index f57496febc67f7596819474b0ec10e2deba604bf..967586a120085f65b734175b69004c832477d246 100644
--- a/Source/core/dom/StyleEngine.h
+++ b/Source/core/dom/StyleEngine.h
@@ -121,6 +121,8 @@ public:
unsigned maxDirectAdjacentSelectors() const { return m_maxDirectAdjacentSelectors; }
bool usesSiblingRules() const { return m_usesSiblingRules; }
bool usesFirstLineRules() const { return m_usesFirstLineRules; }
+ bool usesWindowInactiveSelector() const { return m_usesWindowInactiveSelector; }
+
bool usesFirstLetterRules() const { return m_usesFirstLetterRules; }
void setUsesFirstLetterRules(bool b) { m_usesFirstLetterRules = b; }
bool usesRemUnits() const { return m_usesRemUnits; }
@@ -282,6 +284,7 @@ private:
bool m_usesSiblingRules;
bool m_usesFirstLineRules;
+ bool m_usesWindowInactiveSelector;
bool m_usesFirstLetterRules;
bool m_usesRemUnits;
unsigned m_maxDirectAdjacentSelectors;
« no previous file with comments | « Source/core/css/RuleFeature.cpp ('k') | Source/core/dom/StyleEngine.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698