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

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

Issue 341033003: StylePropertySerializer should expand all property if needed. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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/CSSValueList.h
diff --git a/Source/core/css/CSSValueList.h b/Source/core/css/CSSValueList.h
index cf015a83d32ba6df5a00b2ca1cdb7db2f8148848..fb1bfc042b7d5462bc3846b3e56d9c6612e1d09a 100644
--- a/Source/core/css/CSSValueList.h
+++ b/Source/core/css/CSSValueList.h
@@ -46,6 +46,7 @@ public:
CSSValue* item(size_t index) { return m_values[index].get(); }
const CSSValue* item(size_t index) const { return m_values[index].get(); }
CSSValue* itemWithBoundsCheck(size_t index) { return index < m_values.size() ? m_values[index].get() : 0; }
+ const CSSValue* itemWithBoundsCheck(size_t index) const { return index < m_values.size() ? m_values[index].get() : 0; }
void append(PassRefPtrWillBeRawPtr<CSSValue> value) { m_values.append(value); }
void prepend(PassRefPtrWillBeRawPtr<CSSValue> value) { m_values.prepend(value); }

Powered by Google App Engine
This is Rietveld 408576698