Chromium Code Reviews| Index: components/metrics/test_metrics_service_client.cc |
| =================================================================== |
| --- components/metrics/test_metrics_service_client.cc (revision 271878) |
| +++ components/metrics/test_metrics_service_client.cc (working copy) |
| @@ -4,6 +4,8 @@ |
| #include "components/metrics/test_metrics_service_client.h" |
| +#include "base/bind.h" |
|
Ilya Sherman
2014/05/21 13:37:07
nit: base/callback.h
Alexei Svitkine (slow)
2014/05/21 14:20:15
Done.
|
| + |
| namespace metrics { |
| TestMetricsServiceClient::TestMetricsServiceClient() { |
| @@ -37,4 +39,9 @@ |
| return "5.0.322.0-64-devel"; |
| } |
| +void TestMetricsServiceClient::OnFinalLogCollection( |
| + const base::Closure& done_callback) { |
| + done_callback.Run(); |
| +} |
| + |
| } // namespace metrics |