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

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

Issue 2864063002: Supersize: Chrome-specific breakdowns, console tweaks (Closed)
Patch Set: review tweaks 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
« no previous file with comments | « tools/binary_size/libsupersize/integration_test.py ('k') | tools/binary_size/libsupersize/models.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/binary_size/libsupersize/main.py
diff --git a/tools/binary_size/libsupersize/main.py b/tools/binary_size/libsupersize/main.py
index 41dbd4ac484d727930203a46d7e4a04c9afebfd6..3fe14dafb4ec8bde6ef5751eb74ecbab3b201450 100755
--- a/tools/binary_size/libsupersize/main.py
+++ b/tools/binary_size/libsupersize/main.py
@@ -48,8 +48,7 @@ class _DiffAction(object):
args.output_directory = None
args.tool_prefix = None
args.inputs = [args.before, args.after]
- args.query = ('Print(Diff(size_info1, size_info2), verbose=%s)' %
- bool(args.all))
+ args.query = ('Print(Diff(), verbose=%s)' % bool(args.all))
console.Run(args, parser)
@@ -65,7 +64,7 @@ def main():
'Starts an interactive Python console for analyzing .size files.')
actions['diff'] = (
_DiffAction(),
- 'Shorthand for console --query "Print(Diff(size_info1, size_info2))"')
+ 'Shorthand for console --query "Print(Diff())"')
for name, tup in actions.iteritems():
sub_parser = sub_parsers.add_parser(name, help=tup[1])
« no previous file with comments | « tools/binary_size/libsupersize/integration_test.py ('k') | tools/binary_size/libsupersize/models.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698