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

Unified Diff: Source/core/style/StyleFetchedImageSet.cpp

Issue 1164573002: CSSValue Immediates: Change CSSValue to an object instead of a pointer (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: (Hopefully) Builds with oilpan now Created 5 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: Source/core/style/StyleFetchedImageSet.cpp
diff --git a/Source/core/style/StyleFetchedImageSet.cpp b/Source/core/style/StyleFetchedImageSet.cpp
index a5d19e7fe5a9c161b2a028ab6e5368432f54a02f..d9b61949c768c4965a227e41f57f4da7dd2589d9 100644
--- a/Source/core/style/StyleFetchedImageSet.cpp
+++ b/Source/core/style/StyleFetchedImageSet.cpp
@@ -47,9 +47,9 @@ StyleFetchedImageSet::~StyleFetchedImageSet()
m_bestFitImage->removeClient(this);
}
-PassRefPtrWillBeRawPtr<CSSValue> StyleFetchedImageSet::cssValue() const
+CSSValue StyleFetchedImageSet::cssValue() const
{
- return m_imageSetValue;
+ return *m_imageSetValue;
}
bool StyleFetchedImageSet::canRender(const LayoutObject& layoutObject, float multiplier) const

Powered by Google App Engine
This is Rietveld 408576698