| Index: chrome/browser/resources/profiler/profiler.js
|
| diff --git a/chrome/browser/resources/profiler/profiler.js b/chrome/browser/resources/profiler/profiler.js
|
| index bd6db7308dec9b94870b4da3e72b6f00b83d0239..8a5879903ff0a7a9f4fe5d4daa286ec7aac21c4b 100644
|
| --- a/chrome/browser/resources/profiler/profiler.js
|
| +++ b/chrome/browser/resources/profiler/profiler.js
|
| @@ -367,20 +367,20 @@ var MainView = (function() {
|
|
|
| KEY_PROPERTIES[KEY_FUNCTION_NAME] = {
|
| name: 'Function name',
|
| - inputJsonKey: 'location.function_name',
|
| + inputJsonKey: 'birth_location.function_name',
|
| aggregator: UniquifyAggregator,
|
| };
|
|
|
| KEY_PROPERTIES[KEY_FILE_NAME] = {
|
| name: 'File name',
|
| - inputJsonKey: 'location.file_name',
|
| + inputJsonKey: 'birth_location.file_name',
|
| aggregator: UniquifyAggregator,
|
| };
|
|
|
| KEY_PROPERTIES[KEY_LINE_NUMBER] = {
|
| name: 'Line number',
|
| cellAlignment: 'right',
|
| - inputJsonKey: 'location.line_number',
|
| + inputJsonKey: 'birth_location.line_number',
|
| aggregator: UniquifyAggregator,
|
| };
|
|
|
|
|