summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/platform/transforms/TransformOperations.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/platform/transforms/TransformOperations.h')
-rw-r--r--chromium/third_party/WebKit/Source/platform/transforms/TransformOperations.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/chromium/third_party/WebKit/Source/platform/transforms/TransformOperations.h b/chromium/third_party/WebKit/Source/platform/transforms/TransformOperations.h
index 12b551ee97e..9e564f978d6 100644
--- a/chromium/third_party/WebKit/Source/platform/transforms/TransformOperations.h
+++ b/chromium/third_party/WebKit/Source/platform/transforms/TransformOperations.h
@@ -31,7 +31,7 @@
#include "wtf/Vector.h"
namespace WebCore {
-
+class FloatBox;
class PLATFORM_EXPORT TransformOperations {
WTF_MAKE_FAST_ALLOCATED;
public:
@@ -81,6 +81,7 @@ public:
size_t size() const { return m_operations.size(); }
const TransformOperation* at(size_t index) const { return index < m_operations.size() ? m_operations.at(index).get() : 0; }
+ bool blendedBoundsForBox(const FloatBox&, const TransformOperations& from, const double& minProgress, const double& maxProgress, FloatBox* bounds) const;
TransformOperations blendByMatchingOperations(const TransformOperations& from, const double& progress) const;
TransformOperations blendByUsingMatrixInterpolation(const TransformOperations& from, double progress) const;
TransformOperations blend(const TransformOperations& from, double progress) const;