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

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

Issue 2043273002: Defer compositor keyframe snapshots until the next style resolve (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased 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/animation/DeferredLegacyStyleInterpolation.h
diff --git a/third_party/WebKit/Source/core/animation/DeferredLegacyStyleInterpolation.h b/third_party/WebKit/Source/core/animation/DeferredLegacyStyleInterpolation.h
deleted file mode 100644
index 5f7357922e9d0f998eabc6a252198901e9d25948..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/core/animation/DeferredLegacyStyleInterpolation.h
+++ /dev/null
@@ -1,46 +0,0 @@
-// Copyright 2014 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 DeferredLegacyStyleInterpolation_h
-#define DeferredLegacyStyleInterpolation_h
-
-#include "core/CoreExport.h"
-#include "wtf/Allocator.h"
-
-namespace blink {
-
-class CSSBasicShapeCircleValue;
-class CSSBasicShapeEllipseValue;
-class CSSBasicShapePolygonValue;
-class CSSBasicShapeInsetValue;
-class CSSImageValue;
-class CSSPrimitiveValue;
-class CSSQuadValue;
-class CSSShadowValue;
-class CSSSVGDocumentValue;
-class CSSValue;
-class CSSValueList;
-class CSSValuePair;
-
-// TODO(alancutter): Remove this once compositor keyframes are no longer snapshot during EffectInput::convert().
-class CORE_EXPORT DeferredLegacyStyleInterpolation {
-public:
- STATIC_ONLY(DeferredLegacyStyleInterpolation);
- static bool interpolationRequiresStyleResolve(const CSSValue&);
- static bool interpolationRequiresStyleResolve(const CSSPrimitiveValue&);
- static bool interpolationRequiresStyleResolve(const CSSImageValue&);
- static bool interpolationRequiresStyleResolve(const CSSShadowValue&);
- static bool interpolationRequiresStyleResolve(const CSSSVGDocumentValue&);
- static bool interpolationRequiresStyleResolve(const CSSValueList&);
- static bool interpolationRequiresStyleResolve(const CSSValuePair&);
- static bool interpolationRequiresStyleResolve(const CSSBasicShapeCircleValue&);
- static bool interpolationRequiresStyleResolve(const CSSBasicShapeEllipseValue&);
- static bool interpolationRequiresStyleResolve(const CSSBasicShapePolygonValue&);
- static bool interpolationRequiresStyleResolve(const CSSBasicShapeInsetValue&);
- static bool interpolationRequiresStyleResolve(const CSSQuadValue&);
-};
-
-} // namespace blink
-
-#endif

Powered by Google App Engine
This is Rietveld 408576698