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

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

Issue 2118903002: scheduler: Move the Blink scheduler into Blink (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 4 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 | « no previous file | cc/test/fake_impl_task_runner_provider.h » ('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_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_
OLDNEW
« no previous file with comments | « no previous file | cc/test/fake_impl_task_runner_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698