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

Unified Diff: Source/core/css/CSSInheritedValue.h

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.cpp ('k') | Source/core/css/CSSInitialValue.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSInheritedValue.h
diff --git a/Source/core/css/CSSInheritedValue.h b/Source/core/css/CSSInheritedValue.h
index 9bdc467f4d7341d8f515af91940378e00bd7a144..2d8480315e71a11ed3b8a156582d21c1ecdec1c6 100644
--- a/Source/core/css/CSSInheritedValue.h
+++ b/Source/core/css/CSSInheritedValue.h
@@ -26,7 +26,7 @@
namespace blink {
-class CSSInheritedValue : public CSSValue {
+class CSSInheritedValue : public CSSValueObject {
public:
static PassRefPtrWillBeRawPtr<CSSInheritedValue> create()
{
@@ -37,11 +37,11 @@ public:
bool equals(const CSSInheritedValue&) const { return true; }
- DEFINE_INLINE_TRACE_AFTER_DISPATCH() { CSSValue::traceAfterDispatch(visitor); }
+ DEFINE_INLINE_TRACE_AFTER_DISPATCH() { CSSValueObject::traceAfterDispatch(visitor); }
private:
CSSInheritedValue()
- : CSSValue(InheritedClass)
+ : CSSValueObject(InheritedClass)
{
}
};
« no previous file with comments | « Source/core/css/CSSImageValue.cpp ('k') | Source/core/css/CSSInitialValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698