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

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

Issue 1303173007: Oilpan: Unship Oilpan from CSSValues Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 4 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
« no previous file with comments | « Source/core/style/StyleGeneratedImage.h ('k') | Source/core/style/StyleImage.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/style/StyleGeneratedImage.cpp
diff --git a/Source/core/style/StyleGeneratedImage.cpp b/Source/core/style/StyleGeneratedImage.cpp
index fff63c74437c584b51b40ef7fedef448df0a4949..2fb52c6b725ed63e8e1a3348469be981ad05c62a 100644
--- a/Source/core/style/StyleGeneratedImage.cpp
+++ b/Source/core/style/StyleGeneratedImage.cpp
@@ -30,14 +30,14 @@
namespace blink {
-StyleGeneratedImage::StyleGeneratedImage(PassRefPtrWillBeRawPtr<CSSImageGeneratorValue> value)
+StyleGeneratedImage::StyleGeneratedImage(PassRefPtr<CSSImageGeneratorValue> value)
: m_imageGeneratorValue(value)
, m_fixedSize(m_imageGeneratorValue->isFixedSize())
{
m_isGeneratedImage = true;
}
-PassRefPtrWillBeRawPtr<CSSValue> StyleGeneratedImage::cssValue() const
+PassRefPtr<CSSValue> StyleGeneratedImage::cssValue() const
{
return m_imageGeneratorValue.get();
}
@@ -96,7 +96,6 @@ bool StyleGeneratedImage::knownToBeOpaque(const LayoutObject* layoutObject) cons
DEFINE_TRACE(StyleGeneratedImage)
{
- visitor->trace(m_imageGeneratorValue);
StyleImage::trace(visitor);
}
« no previous file with comments | « Source/core/style/StyleGeneratedImage.h ('k') | Source/core/style/StyleImage.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698