summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/Source/platform/graphics/CompositorMutableStateProvider.h
blob: f55a959119bda0f9370fb6e219c3b24efafc9040 (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
26
27
28
29
30
31
32
33
34
35
36
37
// 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 CompositorMutableStateProvider_h
#define CompositorMutableStateProvider_h

#include "platform/PlatformExport.h"
#include "wtf/PassOwnPtr.h"

#include <cstdint>

namespace cc {
class LayerListImpl;
} // namespace cc

namespace blink {

class CompositorMutableState;
struct CompositorMutations;

// This class is a window onto compositor-owned state. It vends out wrappers
// around per-element bits of this state.
class PLATFORM_EXPORT CompositorMutableStateProvider {
public:
    CompositorMutableStateProvider(cc::LayerListImpl*, CompositorMutations*);
    ~CompositorMutableStateProvider();

    PassOwnPtr<CompositorMutableState> getMutableStateFor(uint64_t elementId);
private:
    cc::LayerListImpl* m_state;
    CompositorMutations* m_mutations;
};

} // namespace blink

#endif // CompositorMutableStateProvider_h