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

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

Issue 67563002: cc: Plumbing for impl thread micro benchmarks (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: speculative fix Created 7 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « cc/debug/micro_benchmark_controller_unittest.cc ('k') | cc/debug/micro_benchmark_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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.
4
5 #ifndef CC_DEBUG_MICRO_BENCHMARK_IMPL_H_
6 #define CC_DEBUG_MICRO_BENCHMARK_IMPL_H_
7
8 #include "base/callback.h"
9 #include "base/memory/scoped_ptr.h"
10 #include "cc/base/cc_export.h"
11
12 namespace base {
13 class Value;
14 class MessageLoopProxy;
15 } // namespace base
16
17 namespace cc {
18
19 class LayerTreeHostImpl;
20 class LayerImpl;
21 class PictureLayerImpl;
22 class CC_EXPORT MicroBenchmarkImpl {
23 public:
24 typedef base::Callback<void(scoped_ptr<base::Value>)> DoneCallback;
25
26 explicit MicroBenchmarkImpl(
27 const DoneCallback& callback,
28 scoped_refptr<base::MessageLoopProxy> origin_loop);
29 virtual ~MicroBenchmarkImpl();
30
31 bool IsDone() const;
32 virtual void DidCompleteCommit(LayerTreeHostImpl* host);
33
34 virtual void RunOnLayer(LayerImpl* layer);
35 virtual void RunOnLayer(PictureLayerImpl* layer);
36
37 protected:
38 void NotifyDone(scoped_ptr<base::Value> result);
39
40 private:
41 DoneCallback callback_;
42 bool is_done_;
43 scoped_refptr<base::MessageLoopProxy> origin_loop_;
44 };
45
46 } // namespace cc
47
48 #endif // CC_DEBUG_MICRO_BENCHMARK_IMPL_H_
OLDNEW
« no previous file with comments | « cc/debug/micro_benchmark_controller_unittest.cc ('k') | cc/debug/micro_benchmark_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698