summaryrefslogtreecommitdiffstats
path: root/chrome/browser/sync/util/highres_timer.h
blob: 2c6513d63a3e3112c286b2c66562c287245e3f66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// High resolution timer functions defined for each OS.

#include "build/build_config.h"

#if defined(OS_WIN)
#include "chrome/browser/sync/util/highres_timer_win.h"
#elif defined(OS_MACOSX)
#include "chrome/browser/sync/util/highres_timer_mac.h"
#else
#include "chrome/browser/sync/util/highres_timer_linux.h"
#endif