#ifndef CC_TREES_TREE_SYNCHRONIZER_H_
#define CC_TREES_TREE_SYNCHRONIZER_H_
#include "base/basictypes.h"
#include "base/memory/scoped_ptr.h"
#include "cc/base/cc_export.h"
namespace cc {
class LayerImpl;
class LayerTreeImpl;
class Layer;
class CC_EXPORT TreeSynchronizer {
public:
static scoped_ptr<LayerImpl> SynchronizeTrees(
Layer* layer_root,
scoped_ptr<LayerImpl> old_layer_impl_root,
LayerTreeImpl* tree_impl);
static scoped_ptr<LayerImpl> SynchronizeTrees(
LayerImpl* layer_root,
scoped_ptr<LayerImpl> old_layer_impl_root,
LayerTreeImpl* tree_impl);
static void PushProperties(Layer* layer_root,
LayerImpl* layer_impl_root);
static void PushProperties(LayerImpl* layer_root, LayerImpl* layer_impl_root);
private:
TreeSynchronizer();
template <typename LayerType>
static void PushPropertiesInternal(
LayerType* layer,
LayerImpl* layer_impl,
size_t* num_dependents_need_push_properties_for_parent);
DISALLOW_COPY_AND_ASSIGN(TreeSynchronizer);
};
}
#endif