Fix ignored parameter in TraceAnalyzer am: b6b1eb9428 am: 5ab0a1eff0
am: 867af56881

Change-Id: I822a8b827e4aa91e3489cb3a50c55eacafffc9ff
diff --git a/base/test/trace_event_analyzer.h b/base/test/trace_event_analyzer.h
index 0549643..e43a525 100644
--- a/base/test/trace_event_analyzer.h
+++ b/base/test/trace_event_analyzer.h
@@ -663,7 +663,9 @@
   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).