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

Unified Diff: Source/bindings/v8/custom/V8CSSValueCustom.cpp

Issue 114373004: Remove the SVGColor and SVGPaint DOM interfaces (were deprecated). (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: text diff fix Created 7 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 | « LayoutTests/webexposed/global-constructors-listing-expected.txt ('k') | Source/core/core.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/v8/custom/V8CSSValueCustom.cpp
diff --git a/Source/bindings/v8/custom/V8CSSValueCustom.cpp b/Source/bindings/v8/custom/V8CSSValueCustom.cpp
index 3db5c35477c627679d7955cac51919145868d19a..e620eeb48a03359603842f408e2aa264255319b7 100644
--- a/Source/bindings/v8/custom/V8CSSValueCustom.cpp
+++ b/Source/bindings/v8/custom/V8CSSValueCustom.cpp
@@ -33,8 +33,6 @@
#include "V8CSSPrimitiveValue.h"
#include "V8CSSValueList.h"
-#include "V8SVGColor.h"
-#include "V8SVGPaint.h"
#include "V8WebKitCSSFilterValue.h"
#include "V8WebKitCSSMixFunctionValue.h"
#include "V8WebKitCSSTransformValue.h"
@@ -55,10 +53,6 @@ v8::Handle<v8::Object> wrap(CSSValue* impl, v8::Handle<v8::Object> creationConte
return wrap(toCSSValueList(impl), creationContext, isolate);
if (impl->isPrimitiveValue())
return wrap(toCSSPrimitiveValue(impl), creationContext, isolate);
- if (impl->isSVGPaint())
- return wrap(toSVGPaint(impl), creationContext, isolate);
- if (impl->isSVGColor())
- return wrap(toSVGColor(impl), creationContext, isolate);
return V8CSSValue::createWrapper(impl, creationContext, isolate);
}
« no previous file with comments | « LayoutTests/webexposed/global-constructors-listing-expected.txt ('k') | Source/core/core.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698