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

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: Rebaselined Created 6 years, 2 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 e32f2dc7ba4348b487916261f19abe89789008ce..f66319a87e44c157e0c1e11c3b3f2c11ac391d4b 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); }
« no previous file with comments | « LayoutTests/inspector/console/console-format-style-whitelist-expected.txt ('k') | Source/core/css/StylePropertySerializer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698