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

Unified Diff: third_party/WebKit/Source/core/css/resolver/ScopedStyleResolver.cpp

Issue 2610513003: Avoid unnecessary updateActiveStyle comparing shadow styles. (Closed)
Patch Set: Fixed review issues. Created 3 years, 12 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/ScopedStyleResolver.cpp
diff --git a/third_party/WebKit/Source/core/css/resolver/ScopedStyleResolver.cpp b/third_party/WebKit/Source/core/css/resolver/ScopedStyleResolver.cpp
index b4e489dc1471e02136c322e3a566e99535d8a68a..8f367134a4d77c34d9abcdd6f1c0697d2712d165 100644
--- a/third_party/WebKit/Source/core/css/resolver/ScopedStyleResolver.cpp
+++ b/third_party/WebKit/Source/core/css/resolver/ScopedStyleResolver.cpp
@@ -298,6 +298,20 @@ void ScopedStyleResolver::addTreeBoundaryCrossingRules(
RuleSubSet::create(parentStyleSheet, sheetIndex, ruleSetForScope));
}
+bool ScopedStyleResolver::haveSameStyles(const ScopedStyleResolver* first,
+ const ScopedStyleResolver* second) {
+ size_t firstCount = first ? first->m_authorStyleSheets.size() : 0;
+ size_t secondCount = second ? second->m_authorStyleSheets.size() : 0;
+ if (firstCount != secondCount)
+ return false;
+ while (firstCount--) {
+ if (first->m_authorStyleSheets[firstCount]->contents() !=
sashab 2017/01/03 22:35:19 I know this is what the old code did, but is there
rune 2017/01/03 23:35:42 I don't think we can compare these vectors with op
sashab 2017/01/04 00:39:33 Eh, that's not much nicer. Ok, I'm happy with you
+ second->m_authorStyleSheets[firstCount]->contents())
+ return false;
+ }
+ return true;
+}
+
DEFINE_TRACE(ScopedStyleResolver::RuleSubSet) {
visitor->trace(m_parentStyleSheet);
visitor->trace(m_ruleSet);

Powered by Google App Engine
This is Rietveld 408576698