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

Unified Diff: tracing/tracing/base/guid.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/base/extension_registry_type_based.html ('k') | tracing/tracing/base/headless_tests.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tracing/tracing/base/guid.html
diff --git a/tracing/tracing/base/guid.html b/tracing/tracing/base/guid.html
index 530c94350593fe71a5fe610482b94e03a70e428d..dade264619073974f45f5c680c5e3b7e718d39d5 100644
--- a/tracing/tracing/base/guid.html
+++ b/tracing/tracing/base/guid.html
@@ -49,8 +49,7 @@ tr.exportTo('tr.b', function() {
allocateUUID4: function() {
return UUID4_PATTERN.replace(/[xy]/g, function(c) {
var r = parseInt(Math.random() * 16);
- if (c === 'y')
- r = (r & 3) + 8;
+ if (c === 'y') r = (r & 3) + 8;
return r.toString(16);
});
}
« no previous file with comments | « tracing/tracing/base/extension_registry_type_based.html ('k') | tracing/tracing/base/headless_tests.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698