Changes for start_with_ext Telemetry test to work on Windows.
[chromium-blink-merge.git] / chrome / browser / metrics / time_ticks_experiment_unittest.cc
blob944510e295cbc0b2d79554d56c74abab5614c7f2
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.
5 #include "chrome/browser/metrics/time_ticks_experiment_win.h"
6 #include "testing/gtest/include/gtest/gtest.h"
8 #if defined(OS_WIN)
10 namespace chrome {
11 namespace {
13 // Makes sure the test runs. Mostly so we don't break by using illegal functions
14 // on older versions of Windows. The results vary depending on the host
15 // machine's capabilities, so it'd be hard to write proper expectations.
16 TEST(TimeTicksExperimentTest, RunTimeTicksExperiment) {
17 CollectTimeTicksStats();
20 } // anonymous namespace
21 } // namespace chrome_browser_metrics
23 #endif // defined(OS_WIN)