Lines Matching full:filepath
17 const base::FilePath& extension_root,
18 const base::FilePath& relative_path)
31 const base::FilePath& ExtensionResource::GetFilePath() const {
49 base::FilePath ExtensionResource::GetFilePath(
50 const base::FilePath& extension_root,
51 const base::FilePath& relative_path,
55 base::FilePath clean_extension_root(
58 return base::FilePath();
60 base::FilePath full_path = clean_extension_root.Append(relative_path);
65 std::vector<base::FilePath::StringType> components;
69 for (std::vector<base::FilePath::StringType>::const_iterator
71 if (*i == base::FilePath::kParentDirectory) {
73 } else if (*i != base::FilePath::kCurrentDirectory) {
77 return base::FilePath();
97 return base::FilePath();
101 base::FilePath::StringType ExtensionResource::NormalizeSeperators(
102 const base::FilePath::StringType& path) const {
104 base::FilePath::StringType win_path = path;
106 if (base::FilePath::IsSeparator(win_path[i]))
107 win_path[i] = base::FilePath::kSeparators[0];
116 const base::FilePath& path) const {