blob: 9570b66cec728323a2e92e6f0e89fe0925f74f67 [file] [log] [blame]
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CC_DEBUG_UNITTEST_ONLY_BENCHMARK_H_
#define CC_DEBUG_UNITTEST_ONLY_BENCHMARK_H_
#include "cc/debug/micro_benchmark.h"
namespace cc {
class UnittestOnlyBenchmark : public MicroBenchmark {
public:
explicit UnittestOnlyBenchmark(const DoneCallback& callback);
virtual ~UnittestOnlyBenchmark();
virtual void DidUpdateLayers(LayerTreeHost* host) OVERRIDE;
};
} // namespace cc
#endif // CC_DEBUG_UNITTEST_ONLY_BENCHMARK_H_