| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CC_DEBUG_UNITTEST_ONLY_BENCHMARK_H_ | 5 #ifndef CC_DEBUG_UNITTEST_ONLY_BENCHMARK_H_ |
| 6 #define CC_DEBUG_UNITTEST_ONLY_BENCHMARK_H_ | 6 #define CC_DEBUG_UNITTEST_ONLY_BENCHMARK_H_ |
| 7 | 7 |
| 8 #include "base/memory/weak_ptr.h" | 8 #include "base/memory/weak_ptr.h" |
| 9 #include "cc/debug/micro_benchmark.h" | 9 #include "cc/debug/micro_benchmark.h" |
| 10 | 10 |
| 11 namespace base { | |
| 12 class SingleThreadIdleTaskRunner; | |
| 13 } | |
| 14 | |
| 15 namespace cc { | 11 namespace cc { |
| 16 | 12 |
| 17 class CC_EXPORT UnittestOnlyBenchmark : public MicroBenchmark { | 13 class CC_EXPORT UnittestOnlyBenchmark : public MicroBenchmark { |
| 18 public: | 14 public: |
| 19 UnittestOnlyBenchmark(std::unique_ptr<base::Value> value, | 15 UnittestOnlyBenchmark(std::unique_ptr<base::Value> value, |
| 20 const DoneCallback& callback); | 16 const DoneCallback& callback); |
| 21 ~UnittestOnlyBenchmark() override; | 17 ~UnittestOnlyBenchmark() override; |
| 22 | 18 |
| 23 void DidUpdateLayers(LayerTreeHost* host) override; | 19 void DidUpdateLayers(LayerTreeHost* host) override; |
| 24 bool ProcessMessage(std::unique_ptr<base::Value> value) override; | 20 bool ProcessMessage(std::unique_ptr<base::Value> value) override; |
| 25 | 21 |
| 26 protected: | 22 protected: |
| 27 std::unique_ptr<MicroBenchmarkImpl> CreateBenchmarkImpl( | 23 std::unique_ptr<MicroBenchmarkImpl> CreateBenchmarkImpl( |
| 28 scoped_refptr<base::SingleThreadTaskRunner> origin_task_runner) override; | 24 scoped_refptr<base::SingleThreadTaskRunner> origin_task_runner) override; |
| 29 | 25 |
| 30 private: | 26 private: |
| 31 void RecordImplResults(std::unique_ptr<base::Value> results); | 27 void RecordImplResults(std::unique_ptr<base::Value> results); |
| 32 | 28 |
| 33 bool create_impl_benchmark_; | 29 bool create_impl_benchmark_; |
| 34 base::WeakPtrFactory<UnittestOnlyBenchmark> weak_ptr_factory_; | 30 base::WeakPtrFactory<UnittestOnlyBenchmark> weak_ptr_factory_; |
| 35 }; | 31 }; |
| 36 | 32 |
| 37 } // namespace cc | 33 } // namespace cc |
| 38 | 34 |
| 39 #endif // CC_DEBUG_UNITTEST_ONLY_BENCHMARK_H_ | 35 #endif // CC_DEBUG_UNITTEST_ONLY_BENCHMARK_H_ |
| OLD | NEW |