OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 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 #ifndef CHROMECAST_BASE_METRICS_CAST_METRICS_TEST_HELPER_H_ |
| 6 #define CHROMECAST_BASE_METRICS_CAST_METRICS_TEST_HELPER_H_ |
| 7 |
| 8 namespace chromecast { |
| 9 namespace metrics { |
| 10 |
| 11 // Creates and initializes a metrics helper stub for the current process, in |
| 12 // which all operations are no-ops. May be safely called multiple times per |
| 13 // process. |
| 14 void InitializeMetricsHelperForTesting(); |
| 15 |
| 16 } // namespace metrics |
| 17 } // namespace chromecast |
| 18 |
| 19 #endif // CHROMECAST_BASE_METRICS_CAST_METRICS_TEST_HELPER_H_ |
OLD | NEW |