| Index: cc/animation/target_property.h
|
| diff --git a/cc/animation/target_property.h b/cc/animation/target_property.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..e4658e15578518991ac5129e26c9c62bd46b1a42
|
| --- /dev/null
|
| +++ b/cc/animation/target_property.h
|
| @@ -0,0 +1,28 @@
|
| +// 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_TARGET_PROPERTY_H_
|
| +#define CC_ANIMATION_TARGET_PROPERTY_H_
|
| +
|
| +namespace cc {
|
| +
|
| +namespace TargetProperty {
|
| +
|
| +enum Type {
|
| + TRANSFORM = 0,
|
| + OPACITY,
|
| + FILTER,
|
| + SCROLL_OFFSET,
|
| + BACKGROUND_COLOR,
|
| + // This sentinel must be last.
|
| + LAST_TARGET_PROPERTY = BACKGROUND_COLOR
|
| +};
|
| +
|
| +const char* GetName(TargetProperty::Type property);
|
| +
|
| +} // namespace TargetProperty
|
| +
|
| +} // namespace cc
|
| +
|
| +#endif // CC_ANIMATION_TARGET_PROPERTY_H_
|
|
|