// 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