Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(145)

Unified Diff: chrome/browser/resources/profiler/profiler.js

Issue 9702014: [UMA] Use proper C++ objects to serialize tracked_objects across process boundaries. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Write JSON unit test and update profiler.js Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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,
};

Powered by Google App Engine
This is Rietveld 408576698