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

Unified Diff: tracing/tracing/model/stack_frame.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
« no previous file with comments | « tracing/tracing/model/slice_group_test.html ('k') | tracing/tracing/model/thread.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/model/stack_frame.html
diff --git a/tracing/tracing/model/stack_frame.html b/tracing/tracing/model/stack_frame.html
index 6063ea2b5283b194d4407a02647ad75367499585..1bc48c950701081672f93a75c26878d045cc321f 100644
--- a/tracing/tracing/model/stack_frame.html
+++ b/tracing/tracing/model/stack_frame.html
@@ -67,7 +67,7 @@ tr.exportTo('tr.model', function() {
removeChild: function(child) {
var i = this.children.indexOf(child.id);
- if (i == -1)
+ if (i === -1)
throw new Error('omg');
this.children.splice(i, 1);
},
« no previous file with comments | « tracing/tracing/model/slice_group_test.html ('k') | tracing/tracing/model/thread.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698