| Index: Source/devtools/front_end/ui/UIUtils.js
|
| diff --git a/Source/devtools/front_end/ui/UIUtils.js b/Source/devtools/front_end/ui/UIUtils.js
|
| index dbfd4488d13321e3351808940d8f4e06dbd57b82..3de4527683a5fbe06ffd1d966f445368377564a7 100644
|
| --- a/Source/devtools/front_end/ui/UIUtils.js
|
| +++ b/Source/devtools/front_end/ui/UIUtils.js
|
| @@ -530,6 +530,17 @@ WebInspector.anotherProfilerActiveLabel = function()
|
| return WebInspector.UIString("Another profiler is already active");
|
| }
|
|
|
| +/**
|
| + * @param {string|undefined} description
|
| + * @return {string}
|
| + */
|
| +WebInspector.asyncStackTraceLabel = function(description)
|
| +{
|
| + if (description)
|
| + return description + " " + WebInspector.UIString("(async)");
|
| + return WebInspector.UIString("Async Call");
|
| +}
|
| +
|
| WebInspector.installPortStyles = function()
|
| {
|
| var platform = WebInspector.platform();
|
|
|