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

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

Issue 723343002: Update from https://crrev.com/304121 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 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
« no previous file with comments | « cc/debug/rasterize_and_record_benchmark_impl.cc ('k') | cc/debug/rendering_stats.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 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 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_RENDERING_STATS_H_ 5 #ifndef CC_DEBUG_RENDERING_STATS_H_
6 #define CC_DEBUG_RENDERING_STATS_H_ 6 #define CC_DEBUG_RENDERING_STATS_H_
7 7
8 #include <list> 8 #include <list>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 13 matching lines...) Expand all
24 ~TimeDeltaList(); 24 ~TimeDeltaList();
25 25
26 void Append(base::TimeDelta value); 26 void Append(base::TimeDelta value);
27 void AddToTracedValue(base::debug::TracedValue* list_value) const; 27 void AddToTracedValue(base::debug::TracedValue* list_value) const;
28 28
29 void Add(const TimeDeltaList& other); 29 void Add(const TimeDeltaList& other);
30 30
31 base::TimeDelta GetLastTimeDelta() const; 31 base::TimeDelta GetLastTimeDelta() const;
32 32
33 private: 33 private:
34 std::list<base::TimeDelta> values; 34 std::vector<base::TimeDelta> values;
35 }; 35 };
36 36
37 struct CC_EXPORT MainThreadRenderingStats { 37 RenderingStats();
38 // Note: when adding new members, please remember to update Add in 38 ~RenderingStats();
39 // rendering_stats.cc.
40 39
41 base::TimeDelta paint_time; 40 // Note: when adding new members, please remember to update Add in
42 int64 painted_pixel_count; 41 // rendering_stats.cc.
43 base::TimeDelta record_time;
44 int64 recorded_pixel_count;
45 42
46 MainThreadRenderingStats(); 43 int64 frame_count;
47 ~MainThreadRenderingStats(); 44 int64 visible_content_area;
48 scoped_refptr<base::debug::ConvertableToTraceFormat> AsTraceableData() 45 int64 approximated_visible_content_area;
49 const;
50 void Add(const MainThreadRenderingStats& other);
51 };
52 46
53 struct CC_EXPORT ImplThreadRenderingStats { 47 TimeDeltaList draw_duration;
54 // Note: when adding new members, please remember to update Add in 48 TimeDeltaList draw_duration_estimate;
55 // rendering_stats.cc. 49 TimeDeltaList begin_main_frame_to_commit_duration;
50 TimeDeltaList begin_main_frame_to_commit_duration_estimate;
51 TimeDeltaList commit_to_activate_duration;
52 TimeDeltaList commit_to_activate_duration_estimate;
56 53
57 int64 frame_count; 54 scoped_refptr<base::debug::ConvertableToTraceFormat> AsTraceableData() const;
58 int64 visible_content_area;
59 int64 approximated_visible_content_area;
60
61 TimeDeltaList draw_duration;
62 TimeDeltaList draw_duration_estimate;
63 TimeDeltaList begin_main_frame_to_commit_duration;
64 TimeDeltaList begin_main_frame_to_commit_duration_estimate;
65 TimeDeltaList commit_to_activate_duration;
66 TimeDeltaList commit_to_activate_duration_estimate;
67
68 ImplThreadRenderingStats();
69 ~ImplThreadRenderingStats();
70 scoped_refptr<base::debug::ConvertableToTraceFormat> AsTraceableData()
71 const;
72 void Add(const ImplThreadRenderingStats& other);
73 };
74
75 MainThreadRenderingStats main_stats;
76 ImplThreadRenderingStats impl_stats;
77
78 // Add fields of |other| to the fields in this structure.
79 void Add(const RenderingStats& other); 55 void Add(const RenderingStats& other);
80 }; 56 };
81 57
82 } // namespace cc 58 } // namespace cc
83 59
84 #endif // CC_DEBUG_RENDERING_STATS_H_ 60 #endif // CC_DEBUG_RENDERING_STATS_H_
OLDNEW
« no previous file with comments | « cc/debug/rasterize_and_record_benchmark_impl.cc ('k') | cc/debug/rendering_stats.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698