| Index: tracing/tracing/extras/chrome/cc/input_latency_async_slice.html
|
| diff --git a/tracing/tracing/extras/chrome/cc/input_latency_async_slice.html b/tracing/tracing/extras/chrome/cc/input_latency_async_slice.html
|
| index ed6eedfa0f397781f72d7800cf01eab49ac554e6..d641963e59fdc57ab67a48c3ceda3f959da67305 100644
|
| --- a/tracing/tracing/extras/chrome/cc/input_latency_async_slice.html
|
| +++ b/tracing/tracing/extras/chrome/cc/input_latency_async_slice.html
|
| @@ -455,7 +455,7 @@ tr.exportTo('tr.e.cc', function() {
|
| }
|
|
|
| // Trace PostTask from rasterizer tasks.
|
| - while (pendingEventQueue.length != 0) {
|
| + while (pendingEventQueue.length !== 0) {
|
| var event = pendingEventQueue.pop();
|
|
|
| this.addEntireSliceHierarchy(event);
|
| @@ -480,7 +480,7 @@ tr.exportTo('tr.e.cc', function() {
|
| }
|
| }, this);
|
|
|
| - while (pendingEventQueue.length != 0) {
|
| + while (pendingEventQueue.length !== 0) {
|
| var event = pendingEventQueue.pop();
|
|
|
| // Push the current event chunk into associatedEvents.
|
|
|