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

Unified Diff: tracing/tracing/extras/chrome/blame_context/render_frame.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/extras/chrome/blame_context/render_frame.html
diff --git a/tracing/tracing/extras/chrome/blame_context/render_frame.html b/tracing/tracing/extras/chrome/blame_context/render_frame.html
index e98eca4d515a9d267ab8f33c7f797e73e8a0ce7d..20ef074771147e66a4be2ad42f4a245dcb18ef7c 100644
--- a/tracing/tracing/extras/chrome/blame_context/render_frame.html
+++ b/tracing/tracing/extras/chrome/blame_context/render_frame.html
@@ -35,14 +35,17 @@ tr.exportTo('tr.e.chrome', function() {
},
get frameTreeNode() {
- if (this.args.frameTreeNode instanceof tr.e.chrome.FrameTreeNodeSnapshot)
+ if (this.args.frameTreeNode instanceof
+ tr.e.chrome.FrameTreeNodeSnapshot) {
return this.args.frameTreeNode;
+ }
return undefined;
},
get url() {
- if (this.frameTreeNode)
+ if (this.frameTreeNode) {
return this.frameTreeNode.url;
+ }
return undefined;
},

Powered by Google App Engine
This is Rietveld 408576698