| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2013 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 "build/build_config.h" | |
| 6 #include "chrome/browser/metrics/time_ticks_experiment_win.h" | |
| 7 #include "testing/gtest/include/gtest/gtest.h" | |
| 8 | |
| 9 #if defined(OS_WIN) | |
| 10 | |
| 11 namespace chrome { | |
| 12 namespace { | |
| 13 | |
| 14 // Makes sure the test runs. Mostly so we don't break by using illegal functions | |
| 15 // on older versions of Windows. The results vary depending on the host | |
| 16 // machine's capabilities, so it'd be hard to write proper expectations. | |
| 17 TEST(TimeTicksExperimentTest, RunTimeTicksExperiment) { | |
| 18 CollectTimeTicksStats(); | |
| 19 } | |
| 20 | |
| 21 } // anonymous namespace | |
| 22 } // namespace chrome_browser_metrics | |
| 23 | |
| 24 #endif // defined(OS_WIN) | |
| OLD | NEW |