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

Unified Diff: tracing/tracing/extras/chrome/cc/input_latency_async_slice.html

Issue 2390373003: Change all == to === and != to !== in trace viewer. (Closed)
Patch Set: more changes from code review Created 4 years, 2 months 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 side-by-side diff with in-line comments
Download patch
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.
« no previous file with comments | « tracing/tracing/extras/android/android_auditor.html ('k') | tracing/tracing/extras/chrome/cc/layer_impl.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698