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

Unified Diff: tracing/tracing/mre/job.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
« no previous file with comments | « tracing/tracing/mre/function_handle.html ('k') | tracing/tracing/mre/map_single_trace_cmdline.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/mre/job.html
diff --git a/tracing/tracing/mre/job.html b/tracing/tracing/mre/job.html
index c2a2761744ddfb9d6668e94604e5d219723dd8b6..b6d121bc842998367f00854d4bad37678e456e41 100644
--- a/tracing/tracing/mre/job.html
+++ b/tracing/tracing/mre/job.html
@@ -13,10 +13,11 @@ found in the LICENSE file.
tr.exportTo('tr.mre', function() {
function Job(mapFunctionHandle, opt_guid) {
this.mapFunctionHandle_ = mapFunctionHandle;
- if (opt_guid === undefined)
+ if (opt_guid === undefined) {
this.guid_ = tr.b.GUID.allocateSimple();
- else
+ } else {
this.guid_ = opt_guid;
+ }
}
Job.prototype = {
« no previous file with comments | « tracing/tracing/mre/function_handle.html ('k') | tracing/tracing/mre/map_single_trace_cmdline.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698