#ifndef CC_TEST_PUSH_PROPERTIES_COUNTING_LAYER_H_
#define CC_TEST_PUSH_PROPERTIES_COUNTING_LAYER_H_
#include <memory>
#include "base/memory/ref_counted.h"
#include "cc/layers/layer.h"
namespace cc {
class LayerImpl;
class LayerTreeImpl;
class PushPropertiesCountingLayer : public Layer {
public:
static scoped_refptr<PushPropertiesCountingLayer> Create();
PushPropertiesCountingLayer(const PushPropertiesCountingLayer&) = delete;
PushPropertiesCountingLayer& operator=(const PushPropertiesCountingLayer&) =
delete;
void PushPropertiesTo(LayerImpl* layer,
const CommitState& commit_state,
const ThreadUnsafeCommitState& unsafe_state) override;
std::unique_ptr<LayerImpl> CreateLayerImpl(
LayerTreeImpl* tree_impl) const override;
void MakePushProperties();
size_t push_properties_count() const { return push_properties_count_; }
void reset_push_properties_count() { push_properties_count_ = 0; }
private:
PushPropertiesCountingLayer();
~PushPropertiesCountingLayer() override;
void AddPushPropertiesCount();
size_t push_properties_count_ = 0;
};
}
#endif