| Index: third_party/WebKit/Source/devtools/front_end/timeline/TimelineUIUtils.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineUIUtils.js b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineUIUtils.js
|
| index 6740237a44de93698c0821b2984bafa6136c0fbd..b17bfa5406ba93ba78f360be8aff30d0c89ac21a 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineUIUtils.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineUIUtils.js
|
| @@ -313,7 +313,7 @@ WebInspector.TimelineUIUtils.interactionPhaseLabel = function(phase)
|
| */
|
| WebInspector.TimelineUIUtils.isUserFrame = function(frame)
|
| {
|
| - return frame.scriptId !== "0" && frame.url && !frame.url.startsWith("native ");
|
| + return frame.scriptId !== "0" && !(frame.url && frame.url.startsWith("native "));
|
| }
|
|
|
| /**
|
|
|