summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorskiazyk <skiazyk@google.com>2017-03-21 20:07:12 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-03-21 20:07:12 +0000
commit38850c422db60dc756e9ef53ae752a89d913eb40 (patch)
tree4a6501e0213841b5c7a59f9d840d31f63b664a6e
parentf5c3557f18e48e694c1aed492a8e356fea679470 (diff)
parent867af56881bf723ca200e7caa6b7acccfc2a27b5 (diff)
downloadlibchrome-38850c422db60dc756e9ef53ae752a89d913eb40.tar.gz
Fix ignored parameter in TraceAnalyzer am: b6b1eb9428 am: 5ab0a1eff0
am: 867af56881 Change-Id: I822a8b827e4aa91e3489cb3a50c55eacafffc9ff
-rw-r--r--base/test/trace_event_analyzer.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/base/test/trace_event_analyzer.h b/base/test/trace_event_analyzer.h
index 054964304f..e43a525644 100644
--- a/base/test/trace_event_analyzer.h
+++ b/base/test/trace_event_analyzer.h
@@ -663,7 +663,9 @@ class TraceAnalyzer {
static TraceAnalyzer* Create(const std::string& json_events)
WARN_UNUSED_RESULT;
- void SetIgnoreMetadataEvents(bool ignore) { ignore_metadata_events_ = true; }
+ void SetIgnoreMetadataEvents(bool ignore) {
+ ignore_metadata_events_ = ignore;
+ }
// Associate BEGIN and END events with each other. This allows Query(OTHER_*)
// to access the associated event and enables Query(EVENT_DURATION).