Index: third_party/WebKit/Source/core/style/StyleMotionRotation.h |
diff --git a/third_party/WebKit/Source/core/style/StyleMotionRotation.h b/third_party/WebKit/Source/core/style/StyleMotionRotation.h |
deleted file mode 100644 |
index 4f256fdf46a05893a8e1df6d2782a6379fc691c6..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/Source/core/style/StyleMotionRotation.h |
+++ /dev/null |
@@ -1,31 +0,0 @@ |
-// Copyright 2016 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 StyleMotionRotation_h |
-#define StyleMotionRotation_h |
- |
-#include "core/style/ComputedStyleConstants.h" |
- |
-namespace blink { |
- |
-struct StyleMotionRotation { |
- StyleMotionRotation(float angle, MotionRotationType type) |
- : angle(angle) |
- , type(type) |
- { } |
- |
- bool operator==(const StyleMotionRotation& other) const |
- { |
- return angle == other.angle |
- && type == other.type; |
- } |
- bool operator!=(const StyleMotionRotation& other) const { return !(*this == other); } |
- |
- float angle; |
- MotionRotationType type; |
-}; |
- |
-} // namespace blink |
- |
-#endif // StyleMotionRotation_h |