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

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

Issue 2165833006: Merge CSSSVGDocumentValue with CSSURIValue (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixup FilterInterpolationFunctions Created 4 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
Index: third_party/WebKit/Source/core/css/CSSValue.cpp
diff --git a/third_party/WebKit/Source/core/css/CSSValue.cpp b/third_party/WebKit/Source/core/css/CSSValue.cpp
index d2c1e0795fa6787e92290ecd47ed906e2902e62d..d0a7b501761b865634e99fc9017758b348eef812 100644
--- a/third_party/WebKit/Source/core/css/CSSValue.cpp
+++ b/third_party/WebKit/Source/core/css/CSSValue.cpp
@@ -53,7 +53,6 @@
#include "core/css/CSSPrimitiveValue.h"
#include "core/css/CSSQuadValue.h"
#include "core/css/CSSReflectValue.h"
-#include "core/css/CSSSVGDocumentValue.h"
#include "core/css/CSSShadowValue.h"
#include "core/css/CSSStringValue.h"
#include "core/css/CSSTimingFunctionValue.h"
@@ -177,8 +176,6 @@ bool CSSValue::equals(const CSSValue& other) const
return compareCSSValues<CSSValuePair>(*this, other);
case ImageSetClass:
return compareCSSValues<CSSImageSetValue>(*this, other);
- case CSSSVGDocumentClass:
- return compareCSSValues<CSSSVGDocumentValue>(*this, other);
case CSSContentDistributionClass:
return compareCSSValues<CSSContentDistributionValue>(*this, other);
case CustomPropertyDeclarationClass:
@@ -271,8 +268,6 @@ String CSSValue::cssText() const
return toCSSValueList(this)->customCSSText();
case ImageSetClass:
return toCSSImageSetValue(this)->customCSSText();
- case CSSSVGDocumentClass:
- return toCSSSVGDocumentValue(this)->customCSSText();
case CSSContentDistributionClass:
return toCSSContentDistributionValue(this)->customCSSText();
case VariableReferenceClass:
@@ -400,9 +395,6 @@ void CSSValue::destroy()
case ImageSetClass:
delete toCSSImageSetValue(this);
return;
- case CSSSVGDocumentClass:
- delete toCSSSVGDocumentValue(this);
- return;
case CSSContentDistributionClass:
delete toCSSContentDistributionValue(this);
return;
@@ -533,9 +525,6 @@ void CSSValue::finalizeGarbageCollectedObject()
case ImageSetClass:
toCSSImageSetValue(this)->~CSSImageSetValue();
return;
- case CSSSVGDocumentClass:
- toCSSSVGDocumentValue(this)->~CSSSVGDocumentValue();
- return;
case CSSContentDistributionClass:
toCSSContentDistributionValue(this)->~CSSContentDistributionValue();
return;
@@ -666,9 +655,6 @@ DEFINE_TRACE(CSSValue)
case ImageSetClass:
toCSSImageSetValue(this)->traceAfterDispatch(visitor);
return;
- case CSSSVGDocumentClass:
- toCSSSVGDocumentValue(this)->traceAfterDispatch(visitor);
- return;
case CSSContentDistributionClass:
toCSSContentDistributionValue(this)->traceAfterDispatch(visitor);
return;
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSValue.h ('k') | third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698