blob: ef68c5ad2747a9882ce659a56872e7c71903573a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
// Copyright 2015 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_TREES_MUTABLE_PROPERTIES_H_
#define CC_TREES_MUTABLE_PROPERTIES_H_
#include <stdint.h>
namespace cc {
struct MutableProperty {
enum : uint32_t { kNone = 0 };
enum : uint32_t { kOpacity = 1 << 0 };
enum : uint32_t { kScrollLeft = 1 << 1 };
enum : uint32_t { kScrollTop = 1 << 2 };
enum : uint32_t { kTransform = 1 << 3 };
enum : uint32_t { kTransformRelated = kTransform | kScrollLeft | kScrollTop };
enum : int { kNumProperties = 4 };
};
} // namespace cc
#endif // CC_TREES_MUTABLE_PROPERTIES_H_
|