#ifndef CC_DEBUG_MICRO_BENCHMARK_IMPL_H_
#define CC_DEBUG_MICRO_BENCHMARK_IMPL_H_
#include "base/callback.h"
#include "base/memory/scoped_ptr.h"
#include "cc/base/cc_export.h"
namespace base {
class Value;
class MessageLoopProxy;
}
namespace cc {
class LayerTreeHostImpl;
class LayerImpl;
class PictureLayerImpl;
class CC_EXPORT MicroBenchmarkImpl {
public:
typedef base::Callback<void(scoped_ptr<base::Value>)> DoneCallback;
explicit MicroBenchmarkImpl(
const DoneCallback& callback,
scoped_refptr<base::MessageLoopProxy> origin_loop);
virtual ~MicroBenchmarkImpl();
bool IsDone() const;
virtual void DidCompleteCommit(LayerTreeHostImpl* host);
virtual void RunOnLayer(LayerImpl* layer);
virtual void RunOnLayer(PictureLayerImpl* layer);
protected:
void NotifyDone(scoped_ptr<base::Value> result);
private:
DoneCallback callback_;
bool is_done_;
scoped_refptr<base::MessageLoopProxy> origin_loop_;
};
}
#endif