Chromium Code Reviews

Side by Side Diff: mojo/edk/system/test/perf_log.cc

Issue 1430593005: EDK: Remove (direct) dependencies of //mojo/edk/system on //base/test. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
« no previous file with comments | « mojo/edk/system/test/perf_log.h ('k') | mojo/edk/system/test/run_all_perftests.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
OLDNEW
« no previous file with comments | « mojo/edk/system/test/perf_log.h ('k') | mojo/edk/system/test/run_all_perftests.cc » ('j') | no next file with comments »

Powered by Google App Engine