| Index: tracing/tracing/model/thread.html
|
| diff --git a/tracing/tracing/model/thread.html b/tracing/tracing/model/thread.html
|
| index a15ecc027350fd9dbe51736ecb6efa2ef5f9df2f..b34add1ed95dcc471d65880b53220c719c30e610 100644
|
| --- a/tracing/tracing/model/thread.html
|
| +++ b/tracing/tracing/model/thread.html
|
| @@ -191,7 +191,7 @@ tr.exportTo('tr.model', function() {
|
| createSubSlices: function() {
|
| this.sliceGroup.createSubSlices();
|
| this.samples_ = this.parent.model.samples.filter(function(sample) {
|
| - return sample.thread == this;
|
| + return sample.thread === this;
|
| }, this);
|
| },
|
|
|
| @@ -255,7 +255,7 @@ tr.exportTo('tr.model', function() {
|
| threadTimeSlice.end);
|
| var intersection = freqRange.findIntersection(range);
|
|
|
| - if (threadTimeSlice.schedulingState ==
|
| + if (threadTimeSlice.schedulingState ===
|
| tr.model.SCHEDULING_STATE.RUNNING) {
|
| var cpu = threadTimeSlice.cpuOnWhichThreadWasRunning;
|
| if (!(cpu.cpuNumber in stats))
|
|
|