diff options
Diffstat (limited to 'chrome/browser/sync/util/compat-file-win.cc')
-rw-r--r-- | chrome/browser/sync/util/compat-file-win.cc | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/chrome/browser/sync/util/compat-file-win.cc b/chrome/browser/sync/util/compat-file-win.cc new file mode 100644 index 0000000..d812d68 --- /dev/null +++ b/chrome/browser/sync/util/compat-file-win.cc @@ -0,0 +1,14 @@ +// 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. + +#ifndef OS_WINDOWS +#error Compile this file on Windows only. +#endif + +#include "chrome/browser/sync/util/compat-file.h" + +#include <windows.h> + +const wchar_t* const kPathSeparator = L"\\"; + |