Index: chrome/browser/sync/util/highres_timer.h |
=================================================================== |
--- chrome/browser/sync/util/highres_timer.h (revision 26149) |
+++ chrome/browser/sync/util/highres_timer.h (working copy) |
@@ -4,10 +4,12 @@ |
// |
// High resolution timer functions defined for each OS. |
-#if defined(OS_WINDOWS) |
-#include "chrome/browser/sync/util/highres_timer-win32.h" |
+#include "build/build_config.h" |
+ |
+#if defined(OS_WIN) |
+#include "chrome/browser/sync/util/highres_timer_win.h" |
#elif defined(OS_MACOSX) |
#error "Mac timer functions are missing." |
#else |
-#include "chrome/browser/sync/util/highres_timer-linux.h" |
+#include "chrome/browser/sync/util/highres_timer_linux.h" |
#endif |