summaryrefslogtreecommitdiff
path: root/chromium/cc/animation/mutable_properties.h
blob: daec22566b9808a6e7f63e5a80d9da73be61cd27 (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
// 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_ANIMATION_MUTABLE_PROPERTIES_H_
#define CC_ANIMATION_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 : int { kNumProperties = 4 };
};

}  // namespace cc

#endif  // CC_ANIMATION_MUTABLE_PROPERTIES_H_