// Copyright 2013 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.#include "base/files/file_path.h"namespacebase{#if defined(FILE_PATH_USES_WIN_SEPARATORS)constFilePath::CharTypeFilePath::kSeparators[]=FILE_PATH_LITERAL("\\/");#else // FILE_PATH_USES_WIN_SEPARATORSconstFilePath::CharTypeFilePath::kSeparators[]=FILE_PATH_LITERAL("/");#endif // FILE_PATH_USES_WIN_SEPARATORSconstsize_tFilePath::kSeparatorsLength=arraysize(kSeparators);constFilePath::CharTypeFilePath::kCurrentDirectory[]=FILE_PATH_LITERAL(".");constFilePath::CharTypeFilePath::kParentDirectory[]=FILE_PATH_LITERAL("..");constFilePath::CharTypeFilePath::kExtensionSeparator=FILE_PATH_LITERAL('.');}// namespace base