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

Unified Diff: third_party/WebKit/Source/core/style/StyleRareInheritedData.h

Issue 2106073005: Add fast-path for propagated variable changes (WIP) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@+pointer_events_fastpath_5
Patch Set: Rebase Created 4 years, 1 month 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/style/StyleRareInheritedData.h
diff --git a/third_party/WebKit/Source/core/style/StyleRareInheritedData.h b/third_party/WebKit/Source/core/style/StyleRareInheritedData.h
index e84256b4e5e8f0d8e4b1496a52afdf0e59a903f0..de737eea58b3fe65918b8e49309fee5f1db09f5c 100644
--- a/third_party/WebKit/Source/core/style/StyleRareInheritedData.h
+++ b/third_party/WebKit/Source/core/style/StyleRareInheritedData.h
@@ -70,6 +70,8 @@ class CORE_EXPORT StyleRareInheritedData
bool operator!=(const StyleRareInheritedData& o) const {
return !(*this == o);
}
+ bool compareEqualNonVariables(const StyleRareInheritedData&) const;
+ bool compareEqualVariables(const StyleRareInheritedData&) const;
bool shadowDataEquivalent(const StyleRareInheritedData&) const;
bool quotesDataEquivalent(const StyleRareInheritedData&) const;

Powered by Google App Engine
This is Rietveld 408576698