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

Unified Diff: systrace/atrace_helper/jni/libmemtrack_wrapper.h

Issue 2946033002: Android systrace: Optimize memory dumps. (Closed)
Patch Set: for review Created 3 years, 6 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: systrace/atrace_helper/jni/libmemtrack_wrapper.h
diff --git a/systrace/atrace_helper/jni/libmemtrack_wrapper.h b/systrace/atrace_helper/jni/libmemtrack_wrapper.h
index 6d6e2eec533e4dfc7b9d85270b6db32293ec310a..cec5cecd736744c6a8373edd20c61bbc49140a06 100644
--- a/systrace/atrace_helper/jni/libmemtrack_wrapper.h
+++ b/systrace/atrace_helper/jni/libmemtrack_wrapper.h
@@ -27,7 +27,7 @@ class MemtrackProc {
uint64_t other_total() const;
uint64_t other_pss() const;
- bool has_errors() const { return proc_ != nullptr; };
kraynov 2017/06/21 14:23:36 It was mistake
+ bool has_errors() const { return proc_ == nullptr; };
private:
MemtrackProc(const MemtrackProc&) = delete;

Powered by Google App Engine
This is Rietveld 408576698