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

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

Issue 1461193003: Revert of [Oilpan] Prepare full definition of classes before using Member (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Make patch applicable Created 5 years, 1 month 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/CSSImageValue.cpp
diff --git a/third_party/WebKit/Source/core/css/CSSImageValue.cpp b/third_party/WebKit/Source/core/css/CSSImageValue.cpp
index 4f9be98ce1c7c078475525c19988be362d99330d..f63bae4d0d6df3793504452c7c5884f8fcb08193 100644
--- a/third_party/WebKit/Source/core/css/CSSImageValue.cpp
+++ b/third_party/WebKit/Source/core/css/CSSImageValue.cpp
@@ -46,12 +46,6 @@ CSSImageValue::~CSSImageValue()
{
}
-StyleFetchedImage* CSSImageValue::cachedImage() const
-{
- ASSERT(!isCachePending());
- return m_cachedImage.get();
-}
-
StyleFetchedImage* CSSImageValue::cacheImage(Document* document, const ResourceLoaderOptions& options)
{
ASSERT(document);
@@ -113,11 +107,6 @@ bool CSSImageValue::knownToBeOpaque(const LayoutObject* layoutObject) const
return m_cachedImage ? m_cachedImage->knownToBeOpaque(layoutObject) : false;
}
-PassRefPtrWillBeRawPtr<CSSImageValue> CSSImageValue::valueWithURLMadeAbsolute()
-{
- return create(KURL(ParsedURLString, m_absoluteURL), m_cachedImage.get());
-}
-
DEFINE_TRACE_AFTER_DISPATCH(CSSImageValue)
{
visitor->trace(m_cachedImage);
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSImageValue.h ('k') | third_party/WebKit/Source/core/css/CSSRuleList.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698