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

Unified Diff: third_party/WebKit/Source/core/css/CSSCursorImageValue.cpp

Issue 1387113002: Change StyleResolverState.styleImage() to take a const CSSValue& (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added TODOs to replace the members with const members Created 5 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: third_party/WebKit/Source/core/css/CSSCursorImageValue.cpp
diff --git a/third_party/WebKit/Source/core/css/CSSCursorImageValue.cpp b/third_party/WebKit/Source/core/css/CSSCursorImageValue.cpp
index eb23c71408c3652f58efe98f026542471d8b9ca9..f0ecb5c998eac0fc4ef9edcbed278c1523ecafd4 100644
--- a/third_party/WebKit/Source/core/css/CSSCursorImageValue.cpp
+++ b/third_party/WebKit/Source/core/css/CSSCursorImageValue.cpp
@@ -124,7 +124,7 @@ bool CSSCursorImageValue::isCachePending(float deviceScaleFactor) const
return m_isCachePending;
}
-StyleImage* CSSCursorImageValue::cachedImage(float deviceScaleFactor)
+StyleImage* CSSCursorImageValue::cachedImage(float deviceScaleFactor) const
{
ASSERT(!isCachePending(deviceScaleFactor));

Powered by Google App Engine
This is Rietveld 408576698