1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
// Copyright 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "cc/debug/rendering_stats.h"
namespace cc {
RenderingStats::TimeDeltaList::TimeDeltaList() {
}
RenderingStats::TimeDeltaList::~TimeDeltaList() {
}
void RenderingStats::TimeDeltaList::Append(base::TimeDelta value) {
values.push_back(value);
}
scoped_ptr<base::ListValue>
RenderingStats::TimeDeltaList::AsListValueInMilliseconds() const {
scoped_ptr<base::ListValue> list_value(new base::ListValue);
std::list<base::TimeDelta>::const_iterator iter;
for (iter = values.begin(); iter != values.end(); ++iter) {
list_value->AppendDouble(iter->InMillisecondsF());
}
return list_value.Pass();
}
void RenderingStats::TimeDeltaList::Add(const TimeDeltaList& other) {
values.insert(values.end(), other.values.begin(), other.values.end());
}
RenderingStats::MainThreadRenderingStats::MainThreadRenderingStats()
: frame_count(0), painted_pixel_count(0), recorded_pixel_count(0) {
}
RenderingStats::MainThreadRenderingStats::~MainThreadRenderingStats() {
}
scoped_refptr<base::debug::ConvertableToTraceFormat>
RenderingStats::MainThreadRenderingStats::AsTraceableData() const {
scoped_ptr<base::DictionaryValue> record_data(new base::DictionaryValue());
record_data->SetInteger("frame_count", frame_count);
record_data->SetDouble("paint_time", paint_time.InSecondsF());
record_data->SetInteger("painted_pixel_count", painted_pixel_count);
record_data->SetDouble("record_time", record_time.InSecondsF());
record_data->SetInteger("recorded_pixel_count", recorded_pixel_count);
return TracedValue::FromValue(record_data.release());
}
void RenderingStats::MainThreadRenderingStats::Add(
const MainThreadRenderingStats& other) {
frame_count += other.frame_count;
paint_time += other.paint_time;
painted_pixel_count += other.painted_pixel_count;
record_time += other.record_time;
recorded_pixel_count += other.recorded_pixel_count;
}
RenderingStats::ImplThreadRenderingStats::ImplThreadRenderingStats()
: frame_count(0),
rasterized_pixel_count(0),
visible_content_area(0),
approximated_visible_content_area(0) {
}
RenderingStats::ImplThreadRenderingStats::~ImplThreadRenderingStats() {
}
scoped_refptr<base::debug::ConvertableToTraceFormat>
RenderingStats::ImplThreadRenderingStats::AsTraceableData() const {
scoped_ptr<base::DictionaryValue> record_data(new base::DictionaryValue());
record_data->SetInteger("frame_count", frame_count);
record_data->SetDouble("rasterize_time", rasterize_time.InSecondsF());
record_data->SetInteger("rasterized_pixel_count", rasterized_pixel_count);
record_data->SetInteger("visible_content_area", visible_content_area);
record_data->SetInteger("approximated_visible_content_area",
approximated_visible_content_area);
record_data->Set("draw_duration_ms",
draw_duration.AsListValueInMilliseconds().release());
record_data->Set(
"draw_duration_estimate_ms",
draw_duration_estimate.AsListValueInMilliseconds().release());
record_data->Set(
"begin_main_frame_to_commit_duration_ms",
begin_main_frame_to_commit_duration.AsListValueInMilliseconds()
.release());
record_data->Set(
"begin_main_frame_to_commit_duration_estimate_ms",
begin_main_frame_to_commit_duration_estimate.AsListValueInMilliseconds()
.release());
record_data->Set(
"commit_to_activate_duration_ms",
commit_to_activate_duration.AsListValueInMilliseconds().release());
record_data->Set(
"commit_to_activate_duration_estimate_ms",
commit_to_activate_duration_estimate.AsListValueInMilliseconds()
.release());
return TracedValue::FromValue(record_data.release());
}
void RenderingStats::ImplThreadRenderingStats::Add(
const ImplThreadRenderingStats& other) {
frame_count += other.frame_count;
rasterize_time += other.rasterize_time;
analysis_time += other.analysis_time;
rasterized_pixel_count += other.rasterized_pixel_count;
visible_content_area += other.visible_content_area;
approximated_visible_content_area += other.approximated_visible_content_area;
draw_duration.Add(other.draw_duration);
draw_duration_estimate.Add(other.draw_duration_estimate);
begin_main_frame_to_commit_duration.Add(
other.begin_main_frame_to_commit_duration);
begin_main_frame_to_commit_duration_estimate.Add(
other.begin_main_frame_to_commit_duration_estimate);
commit_to_activate_duration.Add(other.commit_to_activate_duration);
commit_to_activate_duration_estimate.Add(
other.commit_to_activate_duration_estimate);
}
void RenderingStats::Add(const RenderingStats& other) {
main_stats.Add(other.main_stats);
impl_stats.Add(other.impl_stats);
}
} // namespace cc
|