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

Unified Diff: tools/binary_size/libsupersize/html_report.py

Issue 2870743003: supersize: Add symbol.template_name, and strip <>s from symbol.name (Closed)
Patch Set: review comments Created 3 years, 7 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: tools/binary_size/libsupersize/html_report.py
diff --git a/tools/binary_size/libsupersize/html_report.py b/tools/binary_size/libsupersize/html_report.py
index c1bb059dc363a4515f06cd0d0c9956e953d534ee..d4e51579db327559c8a3b4ccddb77ae74ef94063 100644
--- a/tools/binary_size/libsupersize/html_report.py
+++ b/tools/binary_size/libsupersize/html_report.py
@@ -134,7 +134,7 @@ def _MakeCompactTree(symbols, include_symbols):
symbol_type = _NODE_SYMBOL_TYPE_VTABLE
elif symbol.name.endswith(']'):
symbol_type = _NODE_SYMBOL_TYPE_GENERATED
- _AddSymbolIntoFileNode(node, symbol_type, symbol.name, symbol.pss,
+ _AddSymbolIntoFileNode(node, symbol_type, symbol.template_name, symbol.pss,
include_symbols)
depth += 2
result[_NODE_MAX_DEPTH_KEY] = max(result[_NODE_MAX_DEPTH_KEY], depth)
« no previous file with comments | « tools/binary_size/libsupersize/function_signature_test.py ('k') | tools/binary_size/libsupersize/integration_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698