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

Unified Diff: tracing/tracing/model/process_test.html

Issue 2776653002: [ESLint] Fix violations when enabling curly rule in eslint. (Closed)
Patch Set: rebase Created 3 years, 9 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/model/process_test.html
diff --git a/tracing/tracing/model/process_test.html b/tracing/tracing/model/process_test.html
index f0e6fbb26a44539b59643ab4125c9d849ec4a0ba..a9619fbdf70c408873105ab45dd6747879de6c85 100644
--- a/tracing/tracing/model/process_test.html
+++ b/tracing/tracing/model/process_test.html
@@ -44,12 +44,14 @@ tr.b.unittest.testSuite(function() {
var shiftCount = 0;
thread.shiftTimestampsForward = function(ts) {
- if (ts === 0.32)
+ if (ts === 0.32) {
shiftCount++;
+ }
};
ctr.shiftTimestampsForward = function(ts) {
- if (ts === 0.32)
+ if (ts === 0.32) {
shiftCount++;
+ }
};
process.shiftTimestampsForward(0.32);
« no previous file with comments | « tracing/tracing/model/process_memory_dump_test.html ('k') | tracing/tracing/model/proxy_selectable_item.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698