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

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

Issue 2034013002: Make CSSComputedStyledeclaration::getPropertyCSSValue return const (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@_make_cssproperty_store_const
Patch Set: Rebase Created 4 years, 6 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: 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 cb1e32b81e7a837591c8f9a367624fa2a7671a1b..4f9e1dc39b741d4e053e30df5e1a1bf7808dcd13 100644
--- a/third_party/WebKit/Source/core/css/CSSValueList.h
+++ b/third_party/WebKit/Source/core/css/CSSValueList.h
@@ -64,7 +64,7 @@ public:
void prepend(CSSValue* value) { m_values.prepend(value); }
bool removeAll(const CSSValue&);
bool hasValue(const CSSValue&) const;
- CSSValueList* copy();
+ CSSValueList* copy() const;
String customCSSText() const;
bool equals(const CSSValueList&) const;

Powered by Google App Engine
This is Rietveld 408576698