| Index: tracing/tracing/extras/cpu/cpu_usage_auditor.html
|
| diff --git a/tracing/tracing/extras/cpu/cpu_usage_auditor.html b/tracing/tracing/extras/cpu/cpu_usage_auditor.html
|
| index 3c42fe6592f1a33e18e9177755f0181b368f76cc..0282cf2e0f934153e21168257b3bd61754ec8bd7 100644
|
| --- a/tracing/tracing/extras/cpu/cpu_usage_auditor.html
|
| +++ b/tracing/tracing/extras/cpu/cpu_usage_auditor.html
|
| @@ -5,7 +5,7 @@ Use of this source code is governed by a BSD-style license that can be
|
| found in the LICENSE file.
|
| -->
|
|
|
| -<link rel="import" href="/tracing/base/math.html">
|
| +<link rel="import" href="/tracing/base/math/math.html">
|
| <link rel="import" href="/tracing/core/auditor.html">
|
| <link rel="import" href="/tracing/model/resource_usage_series.html">
|
|
|
| @@ -93,7 +93,7 @@ tr.exportTo('tr.e.audits', function() {
|
| e.cpuSelfTime === undefined) {
|
| continue;
|
| }
|
| - var usage = tr.b.clamp(e.cpuSelfTime / e.selfTime, 0, 1);
|
| + var usage = tr.b.math.clamp(e.cpuSelfTime / e.selfTime, 0, 1);
|
|
|
| // Go through the area covered by this slice but not its subslices
|
| // and add the cpuSelfTimeRatio contribution over this area.
|
|
|