OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "mojo/edk/system/connection_manager.h" | 5 #include "mojo/edk/system/test/perf_log.h" |
| 6 |
| 7 #include "base/test/perf_log.h" |
6 | 8 |
7 namespace mojo { | 9 namespace mojo { |
8 namespace system { | 10 namespace system { |
| 11 namespace test { |
9 | 12 |
10 ConnectionIdentifier ConnectionManager::GenerateConnectionIdentifier() { | 13 void LogPerfResult(const char* test_name, double value, const char* units) { |
11 return UniqueIdentifier::Generate(platform_support_); | 14 base::LogPerfResult(test_name, value, units); |
12 } | 15 } |
13 | 16 |
| 17 } // namespace test |
14 } // namespace system | 18 } // namespace system |
15 } // namespace mojo | 19 } // namespace mojo |
OLD | NEW |