| 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;
|
| },
|
|
|
|
|