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

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

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/StyleFetchedImageSet.cpp ('k') | Source/core/style/StyleGeneratedImage.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/style/StyleGeneratedImage.h
diff --git a/Source/core/style/StyleGeneratedImage.h b/Source/core/style/StyleGeneratedImage.h
index 8112e2d3ccdd271a2f2aaa680adc96033ca419f9..0f0517fd053cdfff15117528a09fb0fefd9fa6da 100644
--- a/Source/core/style/StyleGeneratedImage.h
+++ b/Source/core/style/StyleGeneratedImage.h
@@ -41,7 +41,7 @@ public:
WrappedImagePtr data() const override { return m_imageGeneratorValue.get(); }
- PassRefPtrWillBeRawPtr<CSSValue> cssValue() const override;
+ PassRefPtr<CSSValue> cssValue() const override;
LayoutSize imageSize(const LayoutObject*, float multiplier) const override;
bool imageHasRelativeWidth() const override { return !m_fixedSize; }
@@ -57,9 +57,9 @@ public:
DECLARE_VIRTUAL_TRACE();
private:
- StyleGeneratedImage(PassRefPtrWillBeRawPtr<CSSImageGeneratorValue>);
+ StyleGeneratedImage(PassRefPtr<CSSImageGeneratorValue>);
- RefPtrWillBeMember<CSSImageGeneratorValue> m_imageGeneratorValue;
+ RefPtr<CSSImageGeneratorValue> m_imageGeneratorValue;
IntSize m_containerSize;
bool m_fixedSize;
};
« no previous file with comments | « Source/core/style/StyleFetchedImageSet.cpp ('k') | Source/core/style/StyleGeneratedImage.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698