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

Unified Diff: tools/deep_memory_profiler/lib/deep_dump.py

Issue 754203004: There is a cyclic import in dmprof Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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 | « no previous file | tools/deep_memory_profiler/lib/dump.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/deep_memory_profiler/lib/deep_dump.py
diff --git a/tools/deep_memory_profiler/lib/deep_dump.py b/tools/deep_memory_profiler/lib/deep_dump.py
index dc37ea0c7764d65f4daf26f22a90aa917172769d..bb9a61ed09c087b6a96c37ca0341ade8328328c9 100644
--- a/tools/deep_memory_profiler/lib/deep_dump.py
+++ b/tools/deep_memory_profiler/lib/deep_dump.py
@@ -151,7 +151,7 @@ class DeepDump(Dump):
Raises:
ParsingException for invalid heap profile dumps.
"""
- dump = Dump(path, os.stat(path).st_mtime)
+ dump = DeepDump(path, os.stat(path).st_mtime)
with open(path, 'r') as f:
dump.load_file(f, log_header)
return dump
« no previous file with comments | « no previous file | tools/deep_memory_profiler/lib/dump.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698