Index: components/metrics/serialization/metric_sample.h |
diff --git a/components/metrics/serialization/metric_sample.h b/components/metrics/serialization/metric_sample.h |
index 8784abbd9f4148692086449d36ff5f1a3bf87557..8a1a561d119576468ddd75156c425fb0ec03c8e6 100644 |
--- a/components/metrics/serialization/metric_sample.h |
+++ b/components/metrics/serialization/metric_sample.h |
@@ -43,10 +43,10 @@ class MetricSample { |
// Check the metric type to make sure the request make sense. (ex: a crash |
// sample does not have a bucket_count so we crash if we call bucket_count() |
// on it.) |
- const int sample() const; |
- const int min() const; |
- const int max() const; |
- const int bucket_count() const; |
+ int sample() const; |
+ int min() const; |
+ int max() const; |
+ int bucket_count() const; |
// Returns a serialized version of the sample. |
// |