forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpath_utils.h
31 lines (22 loc) · 1.16 KB
/
path_utils.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Copyright 2015 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 CHROMECAST_BASE_PATH_UTILS_H_
#define CHROMECAST_BASE_PATH_UTILS_H_
#include <string>
#include "base/files/file_path.h"
namespace chromecast {
// If |path| is relative, returns the path created by prepending HOME directory
// to |path| (e.g. {HOME}/|path|). If |path| is absolute, returns |path|.
base::FilePath GetHomePath(const base::FilePath& path);
base::FilePath GetHomePathASCII(const std::string& path);
// If |path| is relative, returns the path created by prepending BIN directory
// to |path| (e.g. {BIN}/|path|). If |path| is absolute, returns |path|.
base::FilePath GetBinPath(const base::FilePath& path);
base::FilePath GetBinPathASCII(const std::string& path);
// If |path| is relative, returns the path created by prepending TMP directory
// to |path| (e.g. {TMP}/|path|). If |path| is absolute, returns |path|.
base::FilePath GetTmpPath(const base::FilePath& path);
base::FilePath GetTmpPathASCII(const std::string& path);
} // namespace chromecast
#endif // CHROMECAST_BASE_PATH_UTILS_H_