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

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

Issue 10077001: [UMA] Use proper C++ objects to serialize tracked_objects across process boundaries. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix yet another IWYU in the chromeos/ code... Created 8 years, 8 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 09294ded56ac68d956d37f2d008b9ec6a4aae41b..1c15b136fde1de6727c16a67e098499d45cf2c46 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,
};
« no previous file with comments | « chrome/browser/metrics/tracking_synchronizer_observer.h ('k') | chrome/browser/task_profiler/task_profiler_data_serializer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698