#ifndef CC_TEST_PUSH_PROPERTIES_COUNTING_LAYER_IMPL_H_
#define CC_TEST_PUSH_PROPERTIES_COUNTING_LAYER_IMPL_H_
#include <memory>
#include "cc/layers/layer_impl.h"
namespace cc {
class LayerTreeImpl;
class PushPropertiesCountingLayerImpl : public LayerImpl {
public:
static std::unique_ptr<PushPropertiesCountingLayerImpl> Create(
LayerTreeImpl* tree_impl,
int id);
PushPropertiesCountingLayerImpl(const PushPropertiesCountingLayerImpl&) =
delete;
~PushPropertiesCountingLayerImpl() override;
PushPropertiesCountingLayerImpl& operator=(
const PushPropertiesCountingLayerImpl&) = delete;
void PushPropertiesTo(LayerImpl* layer) override;
std::unique_ptr<LayerImpl> CreateLayerImpl(
LayerTreeImpl* tree_impl) const override;
size_t push_properties_count() const { return push_properties_count_; }
void reset_push_properties_count() { push_properties_count_ = 0; }
private:
PushPropertiesCountingLayerImpl(LayerTreeImpl* tree_impl, int id);
size_t push_properties_count_;
};
}
#endif