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

Unified Diff: third_party/WebKit/Source/core/animation/DefaultSVGInterpolation.h

Issue 1607633003: Code cleanup: Remove SVGInterpolation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove unused assertion variable to make release compile Created 4 years, 11 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 | « no previous file | third_party/WebKit/Source/core/animation/DefaultSVGInterpolation.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/animation/DefaultSVGInterpolation.h
diff --git a/third_party/WebKit/Source/core/animation/DefaultSVGInterpolation.h b/third_party/WebKit/Source/core/animation/DefaultSVGInterpolation.h
deleted file mode 100644
index 4999678c8fd0b830e097db80ed0f8d41404e8679..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/core/animation/DefaultSVGInterpolation.h
+++ /dev/null
@@ -1,30 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef DefaultSVGInterpolation_h
-#define DefaultSVGInterpolation_h
-
-#include "core/animation/SVGInterpolation.h"
-
-namespace blink {
-
-class DefaultSVGInterpolation : public SVGInterpolation {
-public:
- static PassRefPtr<DefaultSVGInterpolation> create(SVGPropertyBase* start, SVGPropertyBase* end, PassRefPtrWillBeRawPtr<SVGAnimatedPropertyBase> attribute)
- {
- return adoptRef(new DefaultSVGInterpolation(start, end, attribute));
- }
-
- PassRefPtrWillBeRawPtr<SVGPropertyBase> interpolatedValue(SVGElement&) const final;
-
-private:
- DefaultSVGInterpolation(SVGPropertyBase* start, SVGPropertyBase* end, PassRefPtrWillBeRawPtr<SVGAnimatedPropertyBase> attribute);
-
- RefPtrWillBePersistent<SVGPropertyBase> m_start;
- RefPtrWillBePersistent<SVGPropertyBase> m_end;
-};
-
-}
-
-#endif // DefaultSVGInterpolation_h
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/animation/DefaultSVGInterpolation.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698