Roll WebRTC 9217:9227, Libjingle 9216:9227
[chromium-blink-merge.git] / cc / debug / unittest_only_benchmark.h
blob4e74ec7912c0e4dddf5f4f4a281d59b2c00eb931
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CC_DEBUG_UNITTEST_ONLY_BENCHMARK_H_
6 #define CC_DEBUG_UNITTEST_ONLY_BENCHMARK_H_
8 #include "base/memory/weak_ptr.h"
9 #include "cc/debug/micro_benchmark.h"
11 namespace base {
12 class SingleThreadIdleTaskRunner;
15 namespace cc {
17 class CC_EXPORT UnittestOnlyBenchmark : public MicroBenchmark {
18 public:
19 UnittestOnlyBenchmark(scoped_ptr<base::Value> value,
20 const DoneCallback& callback);
21 ~UnittestOnlyBenchmark() override;
23 void DidUpdateLayers(LayerTreeHost* host) override;
24 bool ProcessMessage(scoped_ptr<base::Value> value) override;
26 protected:
27 scoped_ptr<MicroBenchmarkImpl> CreateBenchmarkImpl(
28 scoped_refptr<base::SingleThreadTaskRunner> origin_task_runner) override;
30 private:
31 void RecordImplResults(scoped_ptr<base::Value> results);
33 bool create_impl_benchmark_;
34 base::WeakPtrFactory<UnittestOnlyBenchmark> weak_ptr_factory_;
37 } // namespace cc
39 #endif // CC_DEBUG_UNITTEST_ONLY_BENCHMARK_H_