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

Unified Diff: cc/animation/animation_target_property.h

Issue 1698813002: CC Animation: Expose TargetProperty enum to be aliased in Blink Platform. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use custom hash in unordered_set. Created 4 years, 10 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: cc/animation/animation_target_property.h
diff --git a/cc/animation/animation_target_property.h b/cc/animation/animation_target_property.h
new file mode 100644
index 0000000000000000000000000000000000000000..e45b19f41f8c6c6019d2baabc96d3809a01731bf
--- /dev/null
+++ b/cc/animation/animation_target_property.h
@@ -0,0 +1,39 @@
+// Copyright (c) 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 CC_ANIMATION_ANIMATION_TARGET_PROPERTY_H_
+#define CC_ANIMATION_ANIMATION_TARGET_PROPERTY_H_
+
+#include <functional>
+#include <ostream>
+
+#include "cc/base/cc_export.h"
+
+namespace cc {
+
+enum class AnimationTargetProperty : int {
+ TRANSFORM = 0,
+ OPACITY,
+ FILTER,
+ SCROLL_OFFSET,
+ BACKGROUND_COLOR,
+ // This sentinel must be last.
+ LAST_TARGET_PROPERTY = BACKGROUND_COLOR
+};
+
+const char* GetAnimationTargetPropertyName(AnimationTargetProperty property);
+
+std::ostream& CC_EXPORT operator<<(std::ostream& out,
+ AnimationTargetProperty property);
+
+struct EnumClassHash {
loyso (OOO) 2016/02/17 00:23:06 This can be shared somewhere in base/
+ template <typename T>
+ std::size_t operator()(T t) const {
+ return static_cast<std::size_t>(t);
+ }
+};
+
+} // namespace cc
+
+#endif // CC_ANIMATION_ANIMATION_TARGET_PROPERTY_H_

Powered by Google App Engine
This is Rietveld 408576698