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

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

Issue 782853002: Revert of Implement unset value handling (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years 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/CSSValue.h ('k') | Source/core/css/CSSValuePool.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSValue.cpp
diff --git a/Source/core/css/CSSValue.cpp b/Source/core/css/CSSValue.cpp
index 2d55581c4cb0d99132da46a10e080bea7ac4e220..1c7fbd839061016f0456c026cc26538e05532317 100644
--- a/Source/core/css/CSSValue.cpp
+++ b/Source/core/css/CSSValue.cpp
@@ -53,7 +53,6 @@
#include "core/css/CSSTimingFunctionValue.h"
#include "core/css/CSSTransformValue.h"
#include "core/css/CSSUnicodeRangeValue.h"
-#include "core/css/CSSUnsetValue.h"
#include "core/css/CSSValueList.h"
namespace blink {
@@ -122,8 +121,6 @@
return compareCSSValues<CSSInheritedValue>(*this, other);
case InitialClass:
return compareCSSValues<CSSInitialValue>(*this, other);
- case UnsetClass:
- return compareCSSValues<CSSUnsetValue>(*this, other);
case GridLineNamesClass:
return compareCSSValues<CSSGridLineNamesValue>(*this, other);
case GridTemplateAreasClass:
@@ -194,8 +191,6 @@
return toCSSImageValue(this)->customCSSText();
case InheritedClass:
return toCSSInheritedValue(this)->customCSSText();
- case UnsetClass:
- return toCSSUnsetValue(this)->customCSSText();
case InitialClass:
return toCSSInitialValue(this)->customCSSText();
case GridLineNamesClass:
@@ -277,9 +272,6 @@
case InitialClass:
delete toCSSInitialValue(this);
return;
- case UnsetClass:
- delete toCSSUnsetValue(this);
- return;
case GridLineNamesClass:
delete toCSSGridLineNamesValue(this);
return;
@@ -374,9 +366,6 @@
case InitialClass:
toCSSInitialValue(this)->~CSSInitialValue();
return;
- case UnsetClass:
- toCSSUnsetValue(this)->~CSSUnsetValue();
- return;
case GridLineNamesClass:
toCSSGridLineNamesValue(this)->~CSSGridLineNamesValue();
return;
@@ -471,9 +460,6 @@
case InitialClass:
toCSSInitialValue(this)->traceAfterDispatch(visitor);
return;
- case UnsetClass:
- toCSSUnsetValue(this)->traceAfterDispatch(visitor);
- return;
case GridLineNamesClass:
toCSSGridLineNamesValue(this)->traceAfterDispatch(visitor);
return;
« no previous file with comments | « Source/core/css/CSSValue.h ('k') | Source/core/css/CSSValuePool.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698