Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "components/metrics/test_enabled_state_provider.h" | |
| 6 | |
| 7 namespace metrics { | |
| 8 | |
| 9 bool TestEnabledStateProvider::IsConsentGiven() { | |
| 10 return consent_; | |
| 11 } | |
|
Alexei Svitkine (slow)
2016/05/11 17:16:28
Nit: Add an empty line.
jwd
2016/05/11 18:31:38
Done.
| |
| 12 bool TestEnabledStateProvider::IsReportingEnabled() { | |
| 13 return enabled_; | |
| 14 } | |
| 15 | |
| 16 } // namespace metrics | |
| OLD | NEW |