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

Unified Diff: Source/core/css/CSSImageValue.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: Rebase Created 5 years, 5 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/css/CSSImageValue.h ('k') | Source/core/css/CSSInheritedValue.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSImageValue.cpp
diff --git a/Source/core/css/CSSImageValue.cpp b/Source/core/css/CSSImageValue.cpp
index f6ba3cb201c183e8633039b97025c4e71888ddce..c2de0ddc8b2e5cd7306789a4254871579f8ae923 100644
--- a/Source/core/css/CSSImageValue.cpp
+++ b/Source/core/css/CSSImageValue.cpp
@@ -35,7 +35,7 @@
namespace blink {
CSSImageValue::CSSImageValue(const String& rawValue, const KURL& url, StyleImage* image)
- : CSSValue(ImageClass)
+ : CSSValueObject(ImageClass)
, m_relativeURL(rawValue)
, m_absoluteURL(url.string())
, m_image(image)
@@ -118,7 +118,7 @@ bool CSSImageValue::knownToBeOpaque(const LayoutObject* layoutObject) const
DEFINE_TRACE_AFTER_DISPATCH(CSSImageValue)
{
- CSSValue::traceAfterDispatch(visitor);
+ CSSValueObject::traceAfterDispatch(visitor);
}
void CSSImageValue::reResolveURL(const Document& document)
« no previous file with comments | « Source/core/css/CSSImageValue.h ('k') | Source/core/css/CSSInheritedValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698