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

Unified Diff: tools/deep_memory_profiler/subcommands/buckets.py

Issue 467563002: Refactor dmprof: remove no_dump flag for 'buckets' in load_basic_files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 6 years, 4 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/deep_memory_profiler/lib/subcommand.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/deep_memory_profiler/subcommands/buckets.py
diff --git a/tools/deep_memory_profiler/subcommands/buckets.py b/tools/deep_memory_profiler/subcommands/buckets.py
index 4ea8640ca9d574f0def030bcc645073f126a9b96..c5b65560a8f82c01534d3382d19ef7408af994ab 100644
--- a/tools/deep_memory_profiler/subcommands/buckets.py
+++ b/tools/deep_memory_profiler/subcommands/buckets.py
@@ -18,7 +18,7 @@ class BucketsCommand(SubCommand):
def do(self, sys_argv, out=sys.stdout):
_, args = self._parse_args(sys_argv, 1)
dump_path = args[1]
- bucket_set = SubCommand.load_basic_files(dump_path, True, True)
+ (bucket_set, _) = SubCommand.load_basic_files(dump_path, True)
BucketsCommand._output(bucket_set, out)
return 0
« no previous file with comments | « tools/deep_memory_profiler/lib/subcommand.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698