Index: third_party/WebKit/Source/core/style/ComputedStyle.h |
diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.h b/third_party/WebKit/Source/core/style/ComputedStyle.h |
index 9be19a2c499f6173d504744d09f957971b41c7c8..fca8277e0faa7ba08e4f58d419da39bf2f4f976a 100644 |
--- a/third_party/WebKit/Source/core/style/ComputedStyle.h |
+++ b/third_party/WebKit/Source/core/style/ComputedStyle.h |
@@ -2338,6 +2338,8 @@ class CORE_EXPORT ComputedStyle : public ComputedStyleBase, |
} |
// Comparison operators |
+ // TODO(shend): Replace callers of operator== wth a named method instead, e.g. |
sashab
2017/03/09 23:38:37
Nit - end with full stop ;)
|
+ // inheritedEquals() |
bool operator==(const ComputedStyle& other) const; |
bool operator!=(const ComputedStyle& other) const { |
return !(*this == other); |