Index: third_party/WebKit/Source/core/css/CSSValueList.h |
diff --git a/third_party/WebKit/Source/core/css/CSSValueList.h b/third_party/WebKit/Source/core/css/CSSValueList.h |
index 6810df2e498b680a27690431d246b9ac3ee8b2b1..fafeeadd854892d0ecf3a45760597bdc58c7a7f7 100644 |
--- a/third_party/WebKit/Source/core/css/CSSValueList.h |
+++ b/third_party/WebKit/Source/core/css/CSSValueList.h |
@@ -54,8 +54,6 @@ public: |
size_t length() const { return m_values.size(); } |
const CSSValue* item(size_t index) const { return m_values[index].get(); } |
- // TODO(sashab): Remove this method. |
- const CSSValue* itemWithBoundsCheck(size_t index) const { return index < m_values.size() ? m_values[index].get() : nullptr; } |
void append(const CSSValue* value) { m_values.append(value); } |
bool removeAll(const CSSValue&); |