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
38
39
40
41
42
43
44
45
46
cc / test / push_properties_counting_layer.cc [blame]
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "cc/test/push_properties_counting_layer.h"
#include "cc/test/push_properties_counting_layer_impl.h"
#include "cc/trees/layer_tree_host.h"
namespace cc {
// static
scoped_refptr<PushPropertiesCountingLayer>
PushPropertiesCountingLayer::Create() {
return new PushPropertiesCountingLayer();
}
PushPropertiesCountingLayer::PushPropertiesCountingLayer() {
SetBounds(gfx::Size(1, 1));
}
PushPropertiesCountingLayer::~PushPropertiesCountingLayer() = default;
void PushPropertiesCountingLayer::PushDirtyPropertiesTo(
LayerImpl* layer,
uint8_t dirty_flag,
const CommitState& commit_state,
const ThreadUnsafeCommitState& unsafe_state) {
Layer::PushDirtyPropertiesTo(layer, dirty_flag, commit_state, unsafe_state);
AddPushPropertiesCount();
}
std::unique_ptr<LayerImpl> PushPropertiesCountingLayer::CreateLayerImpl(
LayerTreeImpl* tree_impl) const {
return PushPropertiesCountingLayerImpl::Create(tree_impl, Layer::id());
}
void PushPropertiesCountingLayer::MakePushProperties() {
SetContentsOpaque(!contents_opaque());
}
void PushPropertiesCountingLayer::AddPushPropertiesCount() {
push_properties_count_++;
}
} // namespace cc