| Index: third_party/WebKit/Source/devtools/front_end/profiler/HeapProfileView.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/profiler/HeapProfileView.js b/third_party/WebKit/Source/devtools/front_end/profiler/HeapProfileView.js
|
| index 9a4962ae987df04bdd830e042e82865a72daeace..5c06b954a2a8078c748856a494abb7540b44b9b6 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/profiler/HeapProfileView.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/profiler/HeapProfileView.js
|
| @@ -272,7 +272,7 @@ Profiler.HeapProfileView.NodeFormatter = class {
|
| * @return {string}
|
| */
|
| formatPercent(value, node) {
|
| - return Common.UIString('%.2f\u2009%%', value);
|
| + return Common.UIString('%.2f\xa0%%', value);
|
| }
|
|
|
| /**
|
| @@ -323,7 +323,7 @@ Profiler.HeapFlameChartDataProvider = class extends Profiler.ProfileFlameChartDa
|
| * @return {string}
|
| */
|
| formatValue(value, precision) {
|
| - return Common.UIString('%s\u2009KB', Number.withThousandsSeparator(value / 1e3));
|
| + return Common.UIString('%s\xa0KB', Number.withThousandsSeparator(value / 1e3));
|
| }
|
|
|
| /**
|
|
|