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

Unified Diff: Source/core/css/CSSGridTemplateAreasValue.h

Issue 1124063004: [CSS Grid Layout] Implement CSSGridTemplateAreasValue::equals (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 7 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: Source/core/css/CSSGridTemplateAreasValue.h
diff --git a/Source/core/css/CSSGridTemplateAreasValue.h b/Source/core/css/CSSGridTemplateAreasValue.h
index 0b42fe2a32003d6a3b5eccbb4b6ed88aa802c6ea..8b801b662609dd2313f98abe475eb69b22aca8bd 100644
--- a/Source/core/css/CSSGridTemplateAreasValue.h
+++ b/Source/core/css/CSSGridTemplateAreasValue.h
@@ -51,6 +51,8 @@ public:
size_t rowCount() const { return m_rowCount; }
size_t columnCount() const { return m_columnCount; }
+ bool equals(const CSSGridTemplateAreasValue&) const;
+
DEFINE_INLINE_TRACE_AFTER_DISPATCH() { CSSValue::traceAfterDispatch(visitor); }
private:

Powered by Google App Engine
This is Rietveld 408576698