| Index: third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileView.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileView.js b/third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileView.js
|
| index 76acb99e1078a1cee3b089b0e00722b2a5f16cac..6c41541b99cfa8aa31d5c6e06b7f06e962ac1e16 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileView.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileView.js
|
| @@ -253,7 +253,7 @@ Profiler.CPUProfileView.NodeFormatter = class {
|
| * @return {string}
|
| */
|
| formatValue(value) {
|
| - return Common.UIString('%.1f\u2009ms', value);
|
| + return Common.UIString('%.1f\xa0ms', value);
|
| }
|
|
|
| /**
|
| @@ -263,7 +263,7 @@ Profiler.CPUProfileView.NodeFormatter = class {
|
| * @return {string}
|
| */
|
| formatPercent(value, node) {
|
| - return node.profileNode === this._profileView.profile.idleNode ? '' : Common.UIString('%.2f\u2009%%', value);
|
| + return node.profileNode === this._profileView.profile.idleNode ? '' : Common.UIString('%.2f\xa0%%', value);
|
| }
|
|
|
| /**
|
| @@ -376,7 +376,7 @@ Profiler.CPUFlameChartDataProvider = class extends Profiler.ProfileFlameChartDat
|
| if (ms === 0)
|
| return '0';
|
| if (ms < 1000)
|
| - return Common.UIString('%.1f\u2009ms', ms);
|
| + return Common.UIString('%.1f\xa0ms', ms);
|
| return Number.secondsToString(ms / 1000, true);
|
| }
|
| var name = UI.beautifyFunctionName(node.functionName);
|
|
|