Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(361)

Side by Side Diff: cc/benchmarks/unittest_only_benchmark.h

Issue 2884763002: Automated IWYU fix for TaskRunner includes. (Closed)
Patch Set: rebase on r472096 Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « base/trace_event/memory_dump_manager_unittest.cc ('k') | cc/layers/surface_layer.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_BENCHMARKS_UNITTEST_ONLY_BENCHMARK_H_ 5 #ifndef CC_BENCHMARKS_UNITTEST_ONLY_BENCHMARK_H_
6 #define CC_BENCHMARKS_UNITTEST_ONLY_BENCHMARK_H_ 6 #define CC_BENCHMARKS_UNITTEST_ONLY_BENCHMARK_H_
7 7
8 #include "base/memory/weak_ptr.h" 8 #include "base/memory/weak_ptr.h"
9 #include "base/single_thread_task_runner.h"
9 #include "cc/benchmarks/micro_benchmark.h" 10 #include "cc/benchmarks/micro_benchmark.h"
10 11
11 namespace cc { 12 namespace cc {
12 13
13 class CC_EXPORT UnittestOnlyBenchmark : public MicroBenchmark { 14 class CC_EXPORT UnittestOnlyBenchmark : public MicroBenchmark {
14 public: 15 public:
15 UnittestOnlyBenchmark(std::unique_ptr<base::Value> value, 16 UnittestOnlyBenchmark(std::unique_ptr<base::Value> value,
16 const DoneCallback& callback); 17 const DoneCallback& callback);
17 ~UnittestOnlyBenchmark() override; 18 ~UnittestOnlyBenchmark() override;
18 19
19 void DidUpdateLayers(LayerTreeHost* layer_tree_host) override; 20 void DidUpdateLayers(LayerTreeHost* layer_tree_host) override;
20 bool ProcessMessage(std::unique_ptr<base::Value> value) override; 21 bool ProcessMessage(std::unique_ptr<base::Value> value) override;
21 22
22 protected: 23 protected:
23 std::unique_ptr<MicroBenchmarkImpl> CreateBenchmarkImpl( 24 std::unique_ptr<MicroBenchmarkImpl> CreateBenchmarkImpl(
24 scoped_refptr<base::SingleThreadTaskRunner> origin_task_runner) override; 25 scoped_refptr<base::SingleThreadTaskRunner> origin_task_runner) override;
25 26
26 private: 27 private:
27 void RecordImplResults(std::unique_ptr<base::Value> results); 28 void RecordImplResults(std::unique_ptr<base::Value> results);
28 29
29 bool create_impl_benchmark_; 30 bool create_impl_benchmark_;
30 base::WeakPtrFactory<UnittestOnlyBenchmark> weak_ptr_factory_; 31 base::WeakPtrFactory<UnittestOnlyBenchmark> weak_ptr_factory_;
31 }; 32 };
32 33
33 } // namespace cc 34 } // namespace cc
34 35
35 #endif // CC_BENCHMARKS_UNITTEST_ONLY_BENCHMARK_H_ 36 #endif // CC_BENCHMARKS_UNITTEST_ONLY_BENCHMARK_H_
OLDNEW
« no previous file with comments | « base/trace_event/memory_dump_manager_unittest.cc ('k') | cc/layers/surface_layer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698