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

Unified Diff: third_party/WebKit/Source/core/style/StyleMotionRotation.h

Issue 2241993002: CSS Motion Path: New names for properties (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments Created 4 years, 3 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/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

Powered by Google App Engine
This is Rietveld 408576698